/**handles:neelix-final-style**/
/* === GLOBALE & BASIS-STYLES === */
#neelix-app-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    box-sizing: border-box;
}

h2 {
    text-align: center;
    color: #005a87;
    font-weight: 600;
}

.loading-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #0073aa;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 50px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === ERWEITERTE KOMPASS STYLES FÜR GOOGLE AI INTEGRATION === */

/* Welcome Screen & Hero Section */
.kompass-welcome {
    text-align: center;
    padding: 40px 20px;
}

.kompass-hero {
    margin-bottom: 40px;
}

.kompass-hero h1 {
    font-size: 2.5em;
    margin: 0 0 15px 0;
    background: linear-gradient(135deg, #005a87, #0073aa, #00b4d8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.kompass-subtitle {
    font-size: 1.2em;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.kompass-input-section {
    max-width: 600px;
    margin: 0 auto;
}

.input-container {
    position: relative;
    margin: 20px 0 30px 0;
}

.location-input {
    width: 100%;
    padding: 18px 24px;
    font-size: 1.1em;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.location-input:focus {
    outline: none;
    border-color: #005a87;
    box-shadow: 0 8px 30px rgba(0, 90, 135, 0.15);
    transform: translateY(-2px);
}

.input-hint {
    margin-top: 8px;
    font-size: 0.9em;
    color: #666;
    opacity: 0.8;
}

.primary-cta {
    padding: 16px 40px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #005a87 0%, #0073aa 100%);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(0, 90, 135, 0.25);
    opacity: 0.7;
    transform: scale(0.98);
}

.primary-cta.ready {
    opacity: 1;
    box-shadow: 0 8px 35px rgba(0, 90, 135, 0.35);
    transform: translateY(-2px) scale(1);
}

.primary-cta:hover:not(.ready) {
    transform: scale(0.98);
}

.primary-cta.ready:hover {
    background: linear-gradient(135deg, #004c73 0%, #005a87 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 90, 135, 0.4);
}

/* Progress Indicator */
.step-progress {
    margin-bottom: 30px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #005a87, #0073aa);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.progress-fill.animated {
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.progress-text {
    font-size: 0.9em;
    color: #666;
    font-weight: 500;
}

.step-description {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 1.05em;
}

/* Enhanced Cards */
.karten-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.karte {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.karte.modern {
    border-radius: 20px;
    padding: 30px 25px;
}

.karte::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #005a87, #0073aa);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.karte:hover::before {
    transform: scaleX(1);
}

.karte:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 90, 135, 0.15);
    border-color: #005a87;
}

.karte.modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 90, 135, 0.2);
}

.karte.modern.selected {
    background: linear-gradient(135deg, #e8f4fd 0%, #dbeafe 100%);
    border-color: #005a87;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 90, 135, 0.25);
}

.karte-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.karte h3, .karte h4 {
    color: #005a87;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.karte.modern h3 {
    font-size: 1.3em;
}

.karte p {
    color: #666;
    margin: 0;
    font-size: 0.95em;
}

.karte.modern p {
    font-size: 1em;
    line-height: 1.5;
}

.karte-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.karte-badge.popular { background: linear-gradient(45deg, #28a745, #20c997); }
.karte-badge.urgent { background: linear-gradient(45deg, #e74c3c, #c0392b); animation: urgentPulse 2s infinite; }
.karte-badge:not(.popular):not(.urgent) { background: linear-gradient(45deg, #6c757d, #495057); }

@keyframes urgentPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    50% { transform: scale(1.1); box-shadow: 0 0 10px 10px rgba(231, 76, 60, 0); }
}

/* Advanced Loading Animation */
.advanced-loading {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.loading-hero { margin-bottom: 50px; }
.loading-icon { font-size: 4em; margin-bottom: 20px; animation: spin 3s linear infinite; }
.loading-hero h2 { color: #005a87; margin: 0 0 15px 0; font-size: 2em; }
.loading-hero p { color: #666; font-size: 1.1em; margin: 0; }

.loading-steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.loading-step { display: flex; align-items: center; padding: 20px; background: #f8f9fa; border-radius: 15px; border-left: 4px solid #e9ecef; transition: all 0.3s ease; }
.loading-step.active { background: linear-gradient(135deg, #e8f4fd 0%, #dbeafe 100%); border-left-color: #0073aa; }
.loading-step.completed { background: linear-gradient(135deg, #e8f5e9 0%, #dcedc8 100%); border-left-color: #28a745; }
.step-icon { font-size: 1.5em; margin-right: 15px; min-width: 40px; }
.step-text { flex: 1; font-weight: 500; color: #333; text-align: left; }
.step-loader { width: 20px; height: 20px; border: 2px solid #e9ecef; border-top: 2px solid #0073aa; border-radius: 50%; animation: spin 1s linear infinite; display: none; }
.loading-step.active .step-loader { display: block; }
.loading-step.completed .step-icon::after { content: '✓'; color: #28a745; font-weight: bold; }

/* Google-Style Results */
.results-container { max-width: 1000px; margin: 0 auto; padding: 20px; }
.results-header { margin-bottom: 30px; border-bottom: 1px solid #e9ecef; padding-bottom: 20px; }
.results-header h1 { color: #005a87; margin: 0 0 10px 0; font-size: 2.2em; font-weight: 600; }
.results-stats { color: #666; font-size: 0.9em; }

.ai-overview { background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); border: 1px solid #e9ecef; border-radius: 15px; padding: 25px; margin-bottom: 30px; border-left: 4px solid #0073aa; }
.overview-header { margin-bottom: 15px; }
.ai-badge { background: linear-gradient(45deg, #0073aa, #005a87); color: white; padding: 6px 12px; border-radius: 20px; font-size: 0.8em; font-weight: bold; text-transform: uppercase; letter-spacing: 0.5px; }
.overview-content { font-size: 1.05em; line-height: 1.6; color: #333; }

.google-style-result { background: #ffffff; border: 1px solid #e9ecef; border-radius: 15px; margin-bottom: 25px; overflow: hidden; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; opacity: 0; transform: translateY(20px); }
.google-style-result.fade-in { opacity: 1; transform: translateY(0); }
.google-style-result:hover { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); transform: translateY(-2px); }

.result-header { padding: 25px 25px 15px 25px; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); border-bottom: 1px solid #e9ecef; }
.result-title { margin: 0 0 10px 0; font-size: 1.4em; color: #005a87; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.result-number { background: linear-gradient(45deg, #005a87, #0073aa); color: white; padding: 4px 8px; border-radius: 50%; font-size: 0.8em; min-width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-weight: bold; }
.result-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.verified-badge, .local-badge { padding: 4px 10px; border-radius: 12px; font-size: 0.75em; font-weight: bold; text-transform: uppercase; letter-spacing: 0.5px; color: white; }
.verified-badge { background: linear-gradient(45deg, #28a745, #20c997); }
.local-badge { background: linear-gradient(45deg, #007bff, #0056b3); }

.result-content { padding: 25px; font-size: 1.05em; line-height: 1.7; color: #333; }
.result-content p { margin: 0 0 15px 0; }
.result-content p:last-child { margin-bottom: 0; }
.result-content ul { list-style-type: none; padding-left: 0; margin: 15px 0; }
.result-content li { padding: 8px 0; border-bottom: 1px solid #f8f9fa; position: relative; padding-left: 25px; }
.result-content li::before { content: '✓'; position: absolute; left: 0; color: #28a745; font-weight: bold; }
.result-content strong { color: #005a87; font-weight: 600; }
.result-content a { color: #0073aa; text-decoration: none; font-weight: 500; border-bottom: 1px solid transparent; transition: border-color 0.3s ease; }
.result-content a:hover { border-bottom-color: #0073aa; }

.ai-recommendation { background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%); border: 2px solid #ffd700; border-radius: 20px; padding: 30px; margin: 30px 0; box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3); }
.recommendation-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.ai-avatar { font-size: 2em; background: linear-gradient(45deg, #ffd700, #ffed4e); border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
.recommendation-header h3 { color: #b8860b; margin: 0; font-size: 1.3em; font-weight: 600; }
.recommendation-content { font-size: 1.05em; line-height: 1.7; color: #8b4513; }

.no-results { text-align: center; padding: 60px 20px; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); border-radius: 20px; border: 2px dashed #dee2e6; }
.no-results-icon { font-size: 4em; margin-bottom: 20px; opacity: 0.5; }
.no-results h3 { color: #495057; margin: 0 0 15px 0; font-size: 1.5em; }
.no-results p { color: #6c757d; margin: 0 0 30px 0; font-size: 1.1em; }
.fallback-search-btn { display: inline-block; padding: 15px 30px; background: linear-gradient(135deg, #28a745, #20c997); color: white; text-decoration: none; border-radius: 25px; font-weight: 600; transition: all 0.3s ease; }
.fallback-search-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3); }

/* Advanced Toolbox */
.advanced-toolbox { margin: 40px 0; padding: 30px; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); border-radius: 20px; border: 1px solid #e9ecef; }
.advanced-toolbox-content h3 { color: #005a87; margin: 0 0 20px 0; font-size: 1.3em; text-align: center; }
.toolbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; }
.tool-btn { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px 15px; border: 2px solid #e9ecef; border-radius: 15px; background: #ffffff; cursor: pointer; transition: all 0.3s ease; font-size: 1.5em; color: #005a87; }
.tool-btn span { font-size: 0.6em; font-weight: 500; }
.tool-btn:hover { border-color: #0073aa; background: linear-gradient(135deg, #e8f4fd 0%, #dbeafe 100%); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0, 115, 170, 0.2); }
.tool-btn.success { border-color: #28a745; background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%); color: #155724; }
.tool-btn.error { border-color: #e74c3c; background: linear-gradient(135deg, #f8d7da 0%, #f1aeb5 100%); color: #721c24; }

/* === BUTTONS & WERKZEUGLEISTE === */
.senden-button, .weiter-button, .abschluss-button, .speichern-button, 
.notfallplan-erstellen-button, .werkzeug-button {
    background: linear-gradient(135deg, #005a87 0%, #0073aa 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95em;
    box-shadow: 0 4px 15px rgba(0, 90, 135, 0.2);
}

.senden-button:hover, .weiter-button:hover, .abschluss-button:hover,
.speichern-button:hover, .notfallplan-erstellen-button:hover, .werkzeug-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 90, 135, 0.3);
    background: linear-gradient(135deg, #004c73 0%, #005a87 100%);
}

.senden-button:disabled, .weiter-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.back-button {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: 20px;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
}

.werkzeug-leiste {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border-top: 1px solid #e9ecef;
}

/* === DIALOG/TRAINER/ANKER INTERFACE === */
.dialog-container {
    max-height: 500px;
    overflow-y: auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}
.dialog-nachricht {
    padding: 15px 20px;
    border-radius: 18px;
    margin-bottom: 15px;
    max-width: 85%;
    word-wrap: break-word;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: messageSlideIn 0.3s ease-out;
}
@keyframes messageSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.ki-nachricht {
    background: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 100%);
    margin-right: auto;
    border-bottom-left-radius: 4px;
    color: #2e7d32;
}
.nutzer-nachricht {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    margin-left: auto;
    border-bottom-right-radius: 4px;
    color: #1565c0;
}
textarea {
    width: 100%;
    min-height: 100px;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95em;
    line-height: 1.5;
    resize: vertical;
    transition: all 0.3s ease;
    background: #ffffff;
    box-sizing: border-box;
}
textarea:focus {
    outline: none;
    border-color: #005a87;
    box-shadow: 0 0 0 3px rgba(0, 90, 135, 0.1);
}
.consent-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
}
.consent-container input[type="checkbox"] { margin-top: 4px; transform: scale(1.2); }
.consent-container label { font-size: 0.9em; line-height: 1.4; color: #555; }
.consent-container a { color: #005a87; text-decoration: none; }
.consent-container a:hover { text-decoration: underline; }

/* === FORTSCHRITTSBALKEN & MEHRSTUFIGE TOOLS === */
.fortschritt-container { margin: 30px 0; text-align: center; }
.progress-bar { width: 100%; height: 8px; background: #e9ecef; border-radius: 4px; overflow: hidden; margin-bottom: 10px; }
.progress-bar-inner { height: 100%; background: linear-gradient(90deg, #005a87, #0073aa); transition: width 0.5s ease; }
.fortschritt-text { font-size: 0.9em; color: #666; font-weight: 500; }

.schritt { display: none; animation: fadeIn 0.5s ease-in; }
.schritt.aktiv { display: block; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === NOTFALLPLAN & CRAFT INTERFACE === */
.notfallplan-interface, .craft-interface, .emotionen-interface, .tages-anker-form, .akut-anker-step, .akut-anker-intro, .akut-anker-result {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
    border: 1px solid #e9ecef;
}
.form-section {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #0073aa;
}
.form-section h3 { color: #005a87; margin-top: 0; }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; margin: 15px 0; }
.checkbox-grid label { display: flex; align-items: center; padding: 10px; background: #f8f9fa; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; }
.checkbox-grid label:hover { background: #e9ecef; }
.checkbox-grid input[type="checkbox"] { margin-right: 8px; transform: scale(1.1); }

/* === TAGES-ANKER & AKUT-ANKER SPEZIFISCH === */
.tages-anker-form label, .akut-anker-step h3, .akut-anker-intro h2, .akut-anker-result h2 {
    display: block;
    font-weight: 600;
    color: #005a87;
    margin-bottom: 15px;
}
.tages-anker-form input[type="text"], .tages-anker-form input[type="range"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
}
#tagesplan-zum-speichern h3 {
    color: #005a87;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}
#tagesplan-zum-speichern ul {
    list-style-type: none;
    padding-left: 0;
}
#tagesplan-zum-speichern li {
    background: #f8f9fa;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #0073aa;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    #neelix-app-container { padding: 15px; }
    .karten-wrapper, .checkbox-grid { grid-template-columns: 1fr; gap: 15px; }
    .werkzeug-leiste { flex-direction: column; align-items: center; }
    .werkzeug-button { width: 100%; max-width: 250px; }
    .dialog-nachricht { max-width: 95%; }
}

/* Zusätzliche Stile für andere Tools */
.dialog-container { max-height: 500px; overflow-y: auto; padding: 20px; background: #ffffff; border-radius: 15px; margin: 20px 0; box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05); border: 1px solid #e9ecef; }
.dialog-nachricht { padding: 15px 20px; border-radius: 18px; margin-bottom: 15px; max-width: 85%; word-wrap: break-word; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); animation: messageSlideIn 0.3s ease-out; }
@keyframes messageSlideIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.ki-nachricht { background: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 100%); margin-right: auto; border-bottom-left-radius: 4px; color: #2e7d32; }
.nutzer-nachricht { background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); margin-left: auto; border-bottom-right-radius: 4px; color: #1565c0; }
textarea { width: 100%; min-height: 100px; padding: 15px; border: 2px solid #e9ecef; border-radius: 12px; font-family: inherit; font-size: 0.95em; line-height: 1.5; resize: vertical; transition: all 0.3s ease; background: #ffffff; box-sizing: border-box; }
textarea:focus { outline: none; border-color: #005a87; box-shadow: 0 0 0 3px rgba(0, 90, 135, 0.1); }
.consent-container { display: flex; align-items: flex-start; gap: 10px; margin: 15px 0; padding: 15px; background: #f8f9fa; border-radius: 10px; border-left: 4px solid #ffc107; }
.consent-container input[type="checkbox"] { margin-top: 4px; transform: scale(1.2); }
.consent-container label { font-size: 0.9em; line-height: 1.4; color: #555; }
.consent-container a { color: #005a87; text-decoration: none; }
.consent-container a:hover { text-decoration: underline; }
.werkzeug-leiste { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin: 30px 0; padding: 20px; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); border-radius: 15px; border-top: 1px solid #e9ecef; }
.werkzeug-button { background: linear-gradient(135deg, #6c757d 0%, #495057 100%); color: white; border: none; padding: 10px 20px; border-radius: 20px; cursor: pointer; transition: all 0.3s ease; font-weight: 500; text-decoration: none; }
.werkzeug-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3); }
.senden-button { background: linear-gradient(135deg, #005a87 0%, #0073aa 100%); color: white; border: none; padding: 12px 24px; border-radius: 25px; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.95em; box-shadow: 0 4px 15px rgba(0, 90, 135, 0.2); }
.senden-button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 90, 135, 0.3); background: linear-gradient(135deg, #004c73 0%, #005a87 100%); }
.senden-button:disabled { background: #ccc; cursor: not-allowed; transform: none; box-shadow: none; }
.back-button { background: linear-gradient(135deg, #6c757d 0%, #495057 100%); color: white; border: none; padding: 10px 20px; border-radius: 20px; cursor: pointer; transition: all 0.3s ease; font-weight: 500; margin-top: 20px; }
.back-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3); }

/* Spezifische Tool-Stile */
.form-section { background: #ffffff; padding: 25px; border-radius: 15px; margin: 20px 0; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); border-top: 4px solid #0073aa; }
.form-section h3 { color: #005a87; margin-top: 0; }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; margin: 15px 0; }
.checkbox-grid label { display: flex; align-items: center; padding: 10px; background: #f8f9fa; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; }
.checkbox-grid label:hover { background: #e9ecef; }
.checkbox-grid input[type="checkbox"] { margin-right: 8px; transform: scale(1.1); }