* { box-sizing: border-box; font-family: 'Segoe UI', sans-serif; margin: 0; padding: 0; }

body { background: #f0f2f5; }

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    margin: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.modal-content h2 { color: #e74c3c; margin-bottom: 15px; }
.modal-content h3 { color: #3498db; margin: 20px 0 10px; }
.modal-body { margin-bottom: 25px; line-height: 1.6; }
.modal-body p { margin-bottom: 12px; }

/* Container */
.container { display: flex; min-height: 100vh; }

/* Sidebar - dunkel */
.sidebar {
    width: 320px;
    min-width: 320px;
    background: #2c3e50;
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow: hidden;
    z-index: 1001;
}
.sidebar-header {
    padding: 20px 15px;
    height: 110px; /* Gleiche Höhe wie Header-Box */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* View Toggle in Sidebar */
.view-toggle {
    display: flex;
    background: #1a252f;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
}
.view-toggle button {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: #95a5a6;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}
.view-toggle button.active {
    background: #3498db;
    color: white;
}
.view-toggle button:hover:not(.active) { 
    background: #34495e; 
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

/* Category (Testarten) - dunkles Theme */
.sidebar-category { border-bottom: 1px solid #34495e; }
.sidebar-category.has-values > .category-header { background: rgba(39, 174, 96, 0.15); }
.sidebar-category.has-values > .category-header .sidebar-count { background: #27ae60; display: inline; }
.category-header {
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
    color: white;
}
.category-header:hover { background: #34495e; }
.category-icon { font-size: 18px; }
.category-name { flex: 1; font-size: 13px; font-weight: 500; }
.category-toggle { color: #7f8c8d; transition: transform 0.2s; }
.sidebar-category.open .category-toggle { transform: rotate(180deg); }
.category-tests {
    display: none;
    padding-left: 15px;
    background: #1a252f;
}
.sidebar-category.open .category-tests { display: block; }

.sidebar-test {
    padding: 8px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 12px;
    transition: background 0.2s;
    border-left: 3px solid transparent;
    color: #bdc3c7;
}
.sidebar-test:hover { background: #34495e; }
.sidebar-test.active { background: #3498db; border-left-color: #fff; color: white; }
.sidebar-test.has-values { background: rgba(39, 174, 96, 0.2); border-left-color: #27ae60; }
.sidebar-test.has-values:hover { background: rgba(39, 174, 96, 0.3); }
.sidebar-test .test-name { flex: 1; }
.sidebar-test .test-count {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    margin-left: auto;
}
.sidebar-test.has-values .test-count { background: #27ae60; color: white; }

/* ICF Kategorien in Sidebar (b1400, b1401, etc.) */
.sidebar-kat {
    padding: 8px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 12px;
    transition: background 0.2s;
    border-left: 3px solid transparent;
    color: #bdc3c7;
}
.sidebar-kat:hover { background: #34495e; }
.sidebar-kat.active { background: #3498db; border-left-color: #fff; color: white; }
.sidebar-kat.has-values { background: rgba(39, 174, 96, 0.2); border-left-color: #27ae60; }
.sidebar-kat.has-values:hover { background: rgba(39, 174, 96, 0.3); }
.sidebar-kat .kat-code { 
    margin-right: 10px;
}
.sidebar-kat .kat-name { 
    flex: 1; 
}
.sidebar-kat.active .kat-code,
.sidebar-kat.active .kat-name { color: #fff; }

/* ICF Category in Sidebar */
.icf-category { border-bottom: 1px solid #34495e; }
.icf-category .icf-kategorien { display: none; }
.icf-category.open .icf-kategorien { display: block; }

/* ICF Items */
.sidebar-item {
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid transparent;
    transition: all 0.2s;
}
.sidebar-item:hover { background: #34495e; }
.sidebar-item.active { background: #3498db; }
.sidebar-item.has-values { background: rgba(39, 174, 96, 0.2); border-left-color: #27ae60; }
.sidebar-item.has-values:hover { background: rgba(39, 174, 96, 0.3); }
.sidebar-icon { font-size: 18px; width: 24px; text-align: center; }
.sidebar-text { flex: 1; font-size: 13px; }
.sidebar-count {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    display: none;
}
.sidebar-item.has-values .sidebar-count { background: #27ae60; display: inline; }

/* Main Area */
.main-area {
    flex: 1;
    margin-left: 320px;
    padding: 20px;
    padding-top: 110px; /* Platz für fixierten Header */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Header Box - zweizeilig, rechts neben Sidebar */
.header-box {
    position: fixed;
    top: 0;
    left: 320px; /* Neben der Sidebar */
    right: 0;
    background: #f5f5f5;
    padding: 12px 20px 12px 40px; /* Links mehr Padding für Bündigkeit mit Content */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    border-bottom: 1px solid #ddd;
}
.header-row-1 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.header-row-2 {
    display: flex;
    align-items: center;
}

/* Kind-Info in Header - normale Textboxen */
.header-box .kind-info {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.header-box .kind-info .input-group { 
    display: flex; 
    flex-direction: row; 
    align-items: center;
    gap: 6px; 
}
.header-box .kind-info .input-group label { 
    font-size: 11px; 
    font-weight: 600; 
    color: #666;
    white-space: nowrap;
}
.header-box .kind-info .input-group input {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    background: white;
    color: #333;
    width: 100px;
}
.header-box .kind-info .input-group input:focus { 
    outline: none; 
    border-color: #3498db;
}
.header-box .kind-info .input-group input[readonly] { 
    background: #f0f0f0; 
    font-weight: 600; 
    width: 50px; 
}
.header-box .kind-info .input-group input[type="date"] { 
    width: 130px; 
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}
.btn-sm {
    padding: 5px 10px !important;
    font-size: 11px !important;
}
.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 15px;
}
.user-name {
    font-size: 12px;
    color: #666;
}
.btn-logout {
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 11px;
    transition: background 0.2s;
}
.btn-logout:hover {
    background: #c0392b;
}

/* Zeitpunkt-Bar in Header Row 2 */
.header-row-2 .zeitpunkt-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.zeitpunkt-label {
    color: #666;
    font-size: 12px;
    white-space: nowrap;
}
.header-row-2 .zeitpunkt-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.header-row-2 .zeitpunkt-tab {
    background: white;
    color: #666;
    border: 1px solid #ccc;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}
.header-row-2 .zeitpunkt-tab:hover {
    background: #f0f0f0;
}
.header-row-2 .zeitpunkt-tab.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
}
.header-row-2 .zeitpunkt-actions {
    display: flex;
    gap: 4px;
    margin-left: auto;
}
.header-row-2 .btn-icon {
    background: white;
    border: 1px solid #ccc;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
}
.header-row-2 .btn-icon:hover {
    background: #f0f0f0;
}

/* Zeitpunkt-Bar im Hauptbereich (falls verwendet) */
.zeitpunkt-tabs {
    display: flex;
    gap: 4px;
}
.zeitpunkt-actions {
    display: flex;
    gap: 4px;
}
.btn-icon {
    background: #f0f0f0;
    border: 1px solid #ddd;
    color: #666;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}
.btn-icon:hover {
    background: #e0e0e0;
}

.header-buttons { 
    display: flex; 
    gap: 8px; 
    flex-wrap: wrap;
    margin-left: auto;
}
.header-buttons .btn {
    padding: 6px 12px;
    font-size: 12px;
}

.btn {
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.btn-primary { background: #3498db; color: white; }
.btn-primary:hover { background: #2980b9; }
.btn-secondary { background: #95a5a6; color: white; }
.btn-secondary:hover { background: #7f8c8d; }
.btn-success { background: #27ae60; color: white; }
.btn-success:hover { background: #219a52; }
.btn-danger { background: #e74c3c; color: white; }
.btn-danger:hover { background: #c0392b; }
.file-input { display: none; }

/* Content Split */
.content-split {
    display: flex;
    gap: 20px;
    flex: 1;
    min-height: 0;
}

.content-box {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow-y: auto;
}
.content-box.full-width {
    max-width: 100%;
}
.content-title {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    display: flex;
    align-items: center;
    gap: 8px;
}
.title-sub { font-size: 12px; color: #7f8c8d; font-weight: normal; margin-left: auto; }

.preview-box {
    width: 300px;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow-y: auto;
}
.preview-box h3 { font-size: 14px; color: #7f8c8d; margin-bottom: 15px; }
.preview-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: #bdc3c7;
}
.preview-placeholder span { font-size: 48px; display: block; margin-bottom: 10px; }
.preview-mini { font-size: 12px; }
.preview-header { padding: 10px; background: #f8f9fa; border-radius: 6px; margin-bottom: 10px; }
.preview-values { display: flex; flex-direction: column; gap: 5px; }
.preview-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 8px;
    background: #f0f2f5;
    border-radius: 4px;
}
.preview-more { text-align: center; color: #7f8c8d; padding: 10px; }

/* Test Items */
.test-item { border: 1px solid #e0e0e0; border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.test-header {
    padding: 12px 15px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}
.test-header:hover { background: #e8f4fc; }
.test-header.has-values { background: #d4edda; border-left: 4px solid #27ae60; }
.test-header.has-values:hover { background: #c8e6c9; }
.test-header.has-values.open { background: #c8e6c9; }
.test-header.has-values .test-badge { background: #27ae60; }
.test-header .test-name { font-weight: 600; color: #2c3e50; }
.test-header .test-full-name { 
    font-size: 12px; 
    color: #7f8c8d; 
    margin-left: 10px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.test-badge {
    font-size: 10px;
    background: #3498db;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
}
.test-toggle { margin-left: auto; color: #7f8c8d; transition: transform 0.2s; }
.test-header.open .test-toggle { transform: rotate(180deg); }
.test-content { display: none; padding: 15px; background: #fafafa; border-top: 1px solid #e0e0e0; }
.test-content.open { display: block; }

/* Beurteiler-Zwischentitel */
.beurteiler-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 8px 12px;
    margin: 12px -15px 8px -15px;
    font-weight: 600;
    font-size: 0.9rem;
    border-left: 4px solid #1a5276;
}
.beurteiler-header:first-child { margin-top: 0; }

/* Skala Row */
.skala-row {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    gap: 15px;
    transition: background 0.2s;
}
.skala-row:last-child { border-bottom: none; }
.skala-row.has-value { background: rgba(39, 174, 96, 0.08); border-left: 3px solid #27ae60; padding-left: 10px; margin-left: -10px; }
.skala-abk {
    width: 100px;
    font-weight: 600;
    color: #3498db;
    font-size: 12px;
    font-family: 'Consolas', monospace;
    flex-shrink: 0;
    text-align: right;
    padding-right: 10px;
}
.skala-name { flex: 1; color: #555; font-size: 12px; }
.skala-inputs { display: flex; gap: 8px; flex-shrink: 0; }
.skala-inputs input {
    width: 65px;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    font-size: 12px;
}
.skala-inputs input:focus { outline: none; border-color: #3498db; }
.skala-inputs input.has-value { background: #d4edda; border-color: #27ae60; font-weight: 600; }
.skala-inputs input:disabled { background: #f0f0f0; color: #aaa; cursor: not-allowed; }
.input-pr { border-color: #3498db !important; }
.input-t { border-color: #9b59b6 !important; }
.input-iq { border-color: #e67e22 !important; }
.input-pr.has-value { background: #e3f2fd !important; }
.input-t.has-value { background: #f3e5f5 !important; }
.input-iq.has-value { background: #fff3e0 !important; }

/* ICF-Kategorien im Hauptbereich */
.icf-kategorie {
    margin-bottom: 10px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.icf-kategorie-header {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    cursor: pointer;
    user-select: none;
    transition: all 0.2s;
    gap: 10px;
    border-left: 4px solid #3498db;
}
.icf-kategorie-header:hover {
    background: linear-gradient(135deg, #ecf0f1 0%, #e0e5e8 100%);
}
.icf-kategorie-header.has-values {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left-color: #27ae60;
}
.icf-kategorie-header.open {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}
.icf-kategorie-header.has-values.open {
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
}
.icf-code {
    font-weight: 700;
    color: #2980b9;
    font-size: 14px;
    min-width: 55px;
    font-family: 'Consolas', 'Monaco', monospace;
}
.icf-name {
    flex: 1;
    font-weight: 500;
    color: #2c3e50;
    font-size: 13px;
}
.icf-badge {
    background: #bdc3c7;
    color: #2c3e50;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}
.icf-kategorie-header.has-values .icf-badge {
    background: #27ae60;
    color: white;
}
.icf-toggle {
    color: #7f8c8d;
    font-size: 12px;
    transition: transform 0.2s;
}
.icf-kategorie-header.open .icf-toggle {
    transform: rotate(180deg);
}
.icf-kategorie-content {
    display: none;
    padding: 10px 15px 15px;
    border-top: 1px solid #ecf0f1;
    background: #fafbfc;
}
.icf-kategorie-content.open {
    display: block;
}
.icf-kategorie-content .test-item {
    margin-bottom: 5px;
}
.icf-kategorie-content .test-header {
    background: #f5f7f9;
    padding: 8px 12px;
}
.icf-kategorie-content .test-header:hover {
    background: #ebeff3;
}

/* Welcome - große Begrüßung */
.welcome { 
    text-align: center; 
    padding: 80px 40px; 
    color: #666; 
}
.welcome-icon { 
    font-size: 120px; 
    margin-bottom: 30px; 
}
.welcome h2 { 
    color: #2c3e50; 
    margin-bottom: 20px; 
    font-size: 36px;
    font-weight: 600;
}
.welcome p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.welcome .stats-info {
    font-size: 18px;
    color: #888;
    margin: 30px 0;
}
.welcome .stats-info span {
    display: inline-block;
    padding: 8px 16px;
    background: #f0f0f0;
    border-radius: 20px;
    margin: 5px;
}

/* Sidebar Footer - dunkles Theme */
.sidebar-footer {
    padding: 15px;
    border-top: 1px solid #34495e;
    text-align: center;
}
.contact-link {
    color: #95a5a6;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.contact-link:hover {
    color: #3498db;
}

/* Feedback Hint */
.feedback-hint {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 13px;
    color: #666;
    border-left: 3px solid #3498db;
}
.feedback-hint a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}
.feedback-hint a:hover {
    text-decoration: underline;
}

/* Responsive */

/* Tablet Landscape (1024px - 1200px) */
@media (max-width: 1200px) {
    .preview-box { width: 250px; min-width: 250px; }
    .kind-info { grid-template-columns: repeat(3, 1fr); }
}

/* Tablet Portrait (768px - 1024px) */
@media (max-width: 1024px) {
    .sidebar { width: 280px; min-width: 280px; }
    .main-area { margin-left: 280px; padding: 15px; }
    .header-box { 
        left: 280px;
        padding-left: 35px; /* Bündig mit Content */
    }
    .preview-box { display: none; }
    .content-split { flex-direction: column; }
    .kind-info { grid-template-columns: repeat(3, 1fr); }
    .skala-inputs input { width: 55px; }
    .skala-abk { width: 80px; font-size: 11px; }
}

/* Small Tablet / Large Phone (600px - 768px) */
@media (max-width: 768px) {
    .sidebar { 
        position: fixed;
        left: 0;
        top: 0;
        width: 280px; 
        min-width: 280px; 
        height: 100vh;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1001;
    }
    .sidebar.open { transform: translateX(0); }
    .main-area { 
        margin-left: 0 !important; 
        padding: 15px;
        width: 100%;
    }
    
    /* Fixed Header auf Mobile - volle Breite */
    .header-box {
        left: 0; /* Wieder volle Breite */
        padding: 8px 15px;
        padding-left: 55px; /* Platz für Hamburger */
    }
    .header-row-1 {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 8px;
    }
    .header-box .kind-info {
        display: none; /* Auf Tablet ausblenden */
    }
    .header-actions {
        display: none; /* Auf Mobile ausblenden */
    }
    .user-menu {
        margin-left: auto;
    }
    .user-name {
        display: none;
    }
    .btn-logout {
        padding: 5px 10px;
        font-size: 11px;
    }
    .header-row-2 {
        display: none; /* Zeitpunkte auf Mobile ausblenden */
    }
    .main-area {
        padding-top: 60px;
    }
    
    .content-box { padding: 15px; }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex !important;
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 1002;
        background: #3498db;
        color: white;
        border: none;
        border-radius: 8px;
        padding: 10px 12px;
        font-size: 18px;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
    .mobile-menu-toggle:hover { background: #2980b9; }
    
    /* Overlay when sidebar open */
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
    }
    .sidebar-overlay.active { display: block; }
    
    /* Skala Inputs auf kleinen Bildschirmen */
    .skala-row { flex-wrap: wrap; gap: 8px; }
    .skala-abk { width: 70px; font-size: 11px; }
    .skala-name { 
        flex: 1 1 calc(100% - 90px);
        font-size: 11px;
    }
    .skala-inputs { 
        width: 100%; 
        justify-content: flex-start;
        padding-left: 80px;
    }
    .skala-inputs input { width: 60px; }
}

/* Phone (< 600px) */
@media (max-width: 600px) {
    .sidebar { 
        width: 85vw; 
        min-width: 85vw; 
        transform: translateX(-100%); 
    }
    .sidebar.open { transform: translateX(0); }
    .main-area { 
        padding: 10px; 
        padding-top: 50px; 
        margin-left: 0 !important;
    }
    .header-box {
        padding: 6px 10px 6px 50px;
    }
    .header-row-1 {
        gap: 6px;
        margin-bottom: 0;
    }
    .content-title { font-size: 15px; }
    .test-header .test-full-name { display: none; }
    .skala-abk { width: 60px; font-size: 10px; }
    .skala-name { font-size: 10px; }
    .skala-inputs { padding-left: 70px; }
    .skala-inputs input { width: 50px; padding: 5px; font-size: 11px; }
    
    /* ICF Kategorien kompakter */
    .icf-kategorie-header { padding: 10px 12px; }
    .icf-code { font-size: 12px; min-width: 45px; }
    .icf-name { font-size: 12px; }
    
    /* Modal */
    .modal-content { 
        margin: 10px; 
        padding: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* Mobile Menu Toggle - default hidden on desktop */
.mobile-menu-toggle { display: none; }
.sidebar-overlay { display: none; }

/* === ZEITPUNKT-VERWALTUNG === */
/* Basis-Styles werden von header-row-2 überschrieben */
.zeitpunkt-tab .tab-date {
    font-size: 0.75rem;
    opacity: 0.8;
}

.zeitpunkt-tab .tab-count {
    background: rgba(255,255,255,0.3);
    padding: 1px 6px;
    border-radius: 10px;
    font-size: 0.7rem;
}

.zeitpunkt-tab.active .tab-count {
    background: rgba(255,255,255,0.3);
}

/* Verlaufs-Modal */
.verlauf-option {
    padding: 12px;
    margin: 8px 0;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.verlauf-option:hover {
    border-color: #3498db;
    background: #f8f9fa;
}

.verlauf-option.selected {
    border-color: #3498db;
    background: #e8f4fd;
}

.verlauf-option input[type="checkbox"] {
    margin-right: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .zeitpunkt-bar {
        flex-wrap: wrap;
        width: 100%;
    }
    
    .zeitpunkt-tabs {
        flex-wrap: wrap;
    }
    
    .zeitpunkt-tab {
        padding: 4px 8px;
        font-size: 11px;
    }
}
