/* ==========================================
   FARBEN & STYLING
   ========================================== */

.btn-primary {
    background-color: #007ec0;
    border-color: #007ec0;
    color: white;
}

.btn-primary:active {
    background-color: #005a8f;
    border-color: #005a8f;
}

/* ==========================================
   COLORS & UTILITIES
   ========================================== */

.text-primary {
    color: #007ec0 !important;
}

.icon-primary {
    color: #007ec0 !important;
}

.bg-light-primary {
    background: linear-gradient(135deg, rgba(0, 126, 192, 0.1) 0%, rgba(0, 126, 192, 0.05) 100%);
}

/* ==========================================
   SIDEBAR NAVIGATION (Desktop Only)
   ========================================== */

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100vh;
    background: linear-gradient(135deg, #007ec0 0%, #0056b3 100%);
    display: none;
    flex-direction: column;
    z-index: 1000;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

@media (min-width: 992px) {
    .sidebar-nav {
        display: flex;
    }
    
    .bottom-nav {
        display: none !important;
    }
    
    body {
        padding-bottom: 0;
        margin-left: 250px;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .floating-btn {
        bottom: 100px;
        right: 20px;
        left: auto;
    }
}

.sidebar-header {
    padding: 1.5rem;
    color: white;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h5 {
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.sidebar-header small {
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-menu {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.sidebar-link i {
    font-size: 1.2rem;
    min-width: 24px;
    transition: transform 0.2s ease;
}

.sidebar-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 1.75rem;
}

.sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border-left-color: #ffc107;
    padding-left: 1.75rem;
}

.sidebar-link.active i {
    transform: translateX(4px);
}

.sidebar-divider {
    padding: 1rem 1.5rem 0.5rem 1.5rem;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-divider:first-child {
    margin-top: 0;
    border-top: none;
}

.main-content {
    flex: 1;
    overflow-y: auto;
}

/* ==========================================
   FLASH TOASTS
   ========================================== */

.flash-toast-container {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 420px;
    width: calc(100% - 2rem);
}

.flash-toast {
    margin: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    animation: flashSlideIn 0.35s ease-out;
}

@keyframes flashSlideIn {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .flash-toast-container {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}

/* ==========================================
   BOTTOM NAVIGATION BAR (Mobile Only)
   ========================================== */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    background-color: #007ec0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
    z-index: 100;
    padding-bottom: env(safe-area-inset-bottom);
    gap: 0;
}

@media (min-width: 992px) {
    .bottom-nav {
        display: none !important;
    }
}

.nav-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    min-height: 70px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.2s ease;
    gap: 4px;
}

.nav-link i {
    font-size: 1.4rem;
    transition: font-size 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
}

.nav-link.active i {
    font-size: 1.5rem;
}

/* ==========================================
   FLOATING ACTION BUTTON
   ========================================== */

.floating-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1001;
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #000 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border-radius: 50%;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.3);
    background-color: #ffb300 !important;
}

.floating-btn:active {
    transform: scale(0.95);
}

.floating-filter-btn {
    bottom: 230px;
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #000 !important;
}

.floating-filter-btn:hover {
    background-color: #ffb300 !important;
    border-color: #ffb300 !important;
}

.floating-view-btn {
    bottom: 160px;
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #000 !important;
}

.floating-view-btn:hover {
    background-color: #ffb300 !important;
    border-color: #ffb300 !important;
}

@media (min-width: 992px) {
    .floating-btn {
        bottom: 20px;
    }

    .floating-filter-btn {
        bottom: 160px;
    }

    .floating-view-btn {
        bottom: 90px;
    }
}

/* ==========================================
   BODY & LAYOUT
   ========================================== */

body {
    padding-bottom: 75px;
}

.zeiterfassung-page {
    padding-top: 0;
    padding-bottom: 75px;
}

/* ==========================================
   PAGE CONTAINERS (Unified)
   ========================================== */

.page-container {
    padding-bottom: 100px;
    padding-top: 10px;
}

.dashboard-container,
.apps-container,
.settings-container {
    padding-bottom: 0;
    padding-top: 10px;
}

/* Legacy names for backwards compatibility */
.apps-header,
.settings-header,
.zeiterfassung-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.apps-header h2,
.settings-header h2,
.zeiterfassung-header h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.apps-header p,
.settings-header p,
.zeiterfassung-header p {
    margin: 0;
    font-size: 0.9rem;
}

/* ==========================================
   MODAL
   ========================================== */

.modal-header {
    background-color: #007ec0;
    color: white;
    padding: 1rem;
    border-bottom: none;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.modal-body {
    padding: 1.25rem;
    background-color: #ffffff;
}

.modal-footer {
    border-top: none;
    padding: 0 1.25rem 1.25rem 1.25rem;
    background-color: #ffffff;
}

.modal-title {
    font-weight: 700;
    letter-spacing: 0.2px;
}

.modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.modal .form-label {
    color: #333;
}

.modal .form-control,
.modal .form-select {
    border-radius: 10px;
    border-color: #e2e6ea;
    box-shadow: none;
}

.modal .form-control:focus,
.modal .form-select:focus {
    border-color: #007ec0;
    box-shadow: 0 0 0 0.2rem rgba(0, 126, 192, 0.12);
}

.modal .btn-primary {
    border-radius: 10px;
    font-weight: 600;
}

.modal .btn-outline-secondary,
.modal .btn-outline-danger {
    border-radius: 10px;
}

.modal .d-grid {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.modal .d-grid .btn {
    width: auto;
}

/* ==========================================
   CARDS & ENTRIES
   ========================================== */

.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.card-header {
    border: none;
    background-color: #f8f9fa;
    padding: 1rem;
}

.card-header h6 {
    color: #333;
    font-weight: 600;
}

.entry-item {
    border: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    background-color: #fff;
    transition: all 0.2s ease;
}

.entry-item:hover {
    background-color: #f9f9f9;
}

/* ==========================================
   INTERACTIVE CARDS
   ========================================== */

.interactive-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    cursor: pointer;
}

.interactive-card:active {
    background-color: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 126, 192, 0.15);
    transform: translateX(4px);
}

.interactive-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 126, 192, 0.1) 0%, rgba(0, 126, 192, 0.05) 100%);
    border-radius: 12px;
    color: #007ec0;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.interactive-card-content {
    flex: 1;
    min-width: 0;
}

.interactive-card-title {
    margin: 0;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.interactive-card-description {
    margin: 0.25rem 0 0 0;
    color: #999;
    font-size: 0.8rem;
}

.interactive-card-chevron {
    color: #d0d0d0;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.interactive-card:active .interactive-card-chevron {
    color: #007ec0;
    transform: translateX(4px);
}

/* Legacy card names */
.app-card,
.settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.app-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.app-card:active {
    background-color: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 126, 192, 0.15);
    transform: translateX(4px);
}

.app-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 126, 192, 0.1) 0%, rgba(0, 126, 192, 0.05) 100%);
    border-radius: 12px;
    color: #007ec0;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.app-card-content {
    flex: 1;
    min-width: 0;
}

.app-card-title {
    margin: 0;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.app-card-description {
    margin: 0.25rem 0 0 0;
    color: #999;
    font-size: 0.8rem;
}

.app-card-chevron {
    color: #d0d0d0;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.app-card:active .app-card-chevron {
    color: #007ec0;
    transform: translateX(4px);
}

/* ==========================================
   DASHBOARD STYLING
   ========================================== */

.summary-card {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.summary-card:active {
    transform: translateY(2px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.summary-card .card-text {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.summary-card .card-title {
    color: #007ec0;
}

.quick-action-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-action-card:active {
    transform: scale(0.98);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.quick-action-card p {
    color: #333;
    font-size: 0.875rem;
}

/* ==========================================
   ZEITERFASSUNG STYLING
   ========================================== */

.week-header {
    background-color: #f8f9fa;
    padding: 1rem;
    margin: 1.5rem 0 0.5rem 0;
    border-left: 4px solid #007ec0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    border-radius: 4px 4px 0 0;
}

.week-header h6 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.zeiterfassung-item {
    background: white;
    padding: 1.25rem;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
}

.zeiterfassung-item:last-child {
    border-bottom: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.zeiterfassung-item:active {
    background-color: #f8f9fa;
    transform: scale(0.99);
}

.zeiterfassung-item:hover {
    background-color: #f8f9fa;
}

.time-entry {
    display: flex;
    gap: 1rem;
}

.day-badge {
    text-align: center;
    min-width: 50px;
    flex-shrink: 0;
}

.day-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: #333;
}

.day-date {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.25rem;
}

.time-details {
    flex: 1;
    min-width: 0;
}

.time-range {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.time-range .text-danger {
    color: #dc3545;
    font-weight: 600;
}

.time-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.work-time {
    text-align: right;
    flex-shrink: 0;
    min-width: 60px;
}

.work-time-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: #007ec0;
}

.week-summary {
    color: #007ec0;
    font-weight: 600;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

/* ==========================================
   ENTRY LISTINGS (Unified)
   ========================================== */

.item-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.entries-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.entry-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #fff;
    border: none;
    border-bottom: 1px solid #e9ecef;
    border-radius: 0;
    transition: all 0.2s ease;
    cursor: pointer;
}

.entry-item:last-child {
    border-bottom: none;
}

.entry-item:active {
    background-color: #f8f9fa;
}

.entry-left {
    flex-shrink: 0;
    margin-right: 1rem;
}

.entry-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 126, 192, 0.1) 0%, rgba(0, 126, 192, 0.05) 100%);
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.entry-day {
    color: #007ec0;
    font-weight: 700;
    font-size: 0.85rem;
}

.entry-date {
    color: #999;
    font-size: 0.7rem;
    margin-top: 2px;
}

.entry-middle {
    flex: 1;
    min-width: 0;
}

.entry-time-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.entry-time-range i {
    color: #007ec0;
    font-size: 1rem;
}

.entry-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.entry-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.entry-pause {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
}

.entry-pause i {
    color: #007ec0;
    font-size: 1rem;
}

.entry-overnight {
    display: inline-flex;
    align-items: center;
    color: #ffc107;
    font-size: 1rem;
}

.pause-badge {
    background-color: #007ec0;
    color: white;
}

.overnight-badge {
    background-color: #ffc107;
    color: #333;
}

.entry-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1rem;
    flex-shrink: 0;
}

.entry-work-time {
    text-align: right;
    color: #007ec0;
    font-weight: 700;
    font-size: 1rem;
    min-width: 50px;
}

.entry-chevron {
    color: #d0d0d0;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.entry-item:active .entry-chevron {
    color: #007ec0;
    transform: translateX(4px);
}

/* ==========================================
   EMPTY STATE
   ========================================== */

.empty-state {
    padding: 2rem 1rem;
    text-align: center;
    color: #666;
}

.empty-state i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* ==========================================
   APPS PAGE STYLING
   ========================================== */

.apps-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.app-card-link,
.settings-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* ==========================================
   SECTION STYLING (Unified)
   ========================================== */

.section-divider {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.section-divider-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.section-divider-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    text-align: right;
}

.section-title {
    color: #666;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0 0 0.5rem 0;
    border-bottom: 2px solid #007ec0;
    display: inline-block;
    margin: 0;
}

.section-user {
    color: #333;
    font-weight: 600;
    font-size: 0.85rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    background-color: #f1f3f5;
    border: 1px solid #e0e0e0;
    color: #333;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 999px;
}

/* ==========================================
   SETTINGS PAGE STYLING
   ========================================== */

.settings-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.settings-item,
.settings-toggle-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.settings-item:hover,
.settings-item:focus {
    text-decoration: none;
    color: inherit;
}

.settings-item:last-child,
.settings-toggle-item:last-child {
    border-bottom: none;
}

.settings-item:active,
.settings-toggle-item:active {
    background-color: #f8f9fa;
}

.settings-content {
    flex: 1;
    min-width: 0;
}

.settings-label {
    margin: 0;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.settings-value {
    margin: 0.5rem 0 0 0;
    color: #666;
    font-size: 0.85rem;
}

.settings-description {
    margin: 0.25rem 0 0 0;
    color: #999;
    font-size: 0.8rem;
}

.settings-item > i,
.settings-toggle-item > i {
    color: #d0d0d0;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

/* ==========================================
   FAHRZEUGE LISTE
   ========================================== */

.fahrzeuge-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fahrzeug-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.fahrzeug-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eef0f2;
    background: #f7f8f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fahrzeug-thumb--placeholder {
    color: #b9bfc6;
    font-size: 1.5rem;
}

.fahrzeug-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.fahrzeug-title {
    font-weight: 700;
    color: #0b3a5c;
}

.fahrzeug-badge {
    background: #e7f5ff;
    color: #1c7ed6;
    border: 1px solid #d0ebff;
    padding: 2px 6px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.fahrzeug-subtitle {
    color: #6c757d;
    margin-top: 2px;
    font-size: 0.9rem;
}

.fahrzeug-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #5f6b76;
}

.fahrzeug-meta i {
    margin-right: 6px;
    color: #8a95a1;
}

/* ==========================================
   MITARBEITER LISTE
   ========================================== */

.mitarbeiter-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mitarbeiter-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.mitarbeiter-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 1.4rem;
    border: 1px solid #e9ecef;
}

.mitarbeiter-avatar-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.mitarbeiter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.mitarbeiter-name {
    font-weight: 700;
    color: #0b3a5c;
}

.mitarbeiter-badge {
    background: #f3f0ff;
    color: #5f3dc4;
    border: 1px solid #e5dbff;
    padding: 2px 6px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.mitarbeiter-subtitle {
    color: #6c757d;
    margin-top: 2px;
    font-size: 0.9rem;
}

.form-check.form-switch {
    padding-left: 0;
}

.form-switch .form-check-input {
    width: 2.5rem;
    height: 1.4rem;
    background-color: #ccc;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.form-switch .form-check-input:checked {
    background-color: #007ec0;
}

.logout-item {
    border-top: 1px solid #f0f0f0;
    margin-top: 1rem;
    padding-top: 1rem;
}

.logout-label {
    color: #dc3545;
}
