/* WolfGuard Security - Modern Design 2025 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-dark: #000000;
    --primary-blue: #1a1a1a;
    --accent-gold: #D4AF37;
    --text-light: #333333;
    --text-gray: #555555;
    --text-white: #ffffff;
    --bg-dark: #f5f5f5;
    --bg-section: #ffffff;
    --bg-card: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 85px;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
}

img,
video {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Header Styling - Premium Modern Design */
#header {
    position: fixed !important;
    width: 100%;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        transparent 100%);
    pointer-events: none;
}

#header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    padding: 0.5rem 0;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(212, 175, 55, 0.2);
}

#header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

#header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    gap: 2rem;
}

/* Logo Area */
.header-left {
    flex: 0 0 auto;
    position: relative;
}

.header-left a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.header-left img {
    max-height: 55px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.3));
}

#header.scrolled .header-left img {
    max-height: 50px;
}

.header-left img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.4));
}

/* Navigation Container */
.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Main Navigation */
.main-menu {
    position: relative;
}


/* Main Navigation */
.main-menu {
    position: relative;
}

.main-menu .animenu__nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.main-menu .animenu__nav li {
    position: relative;
}

/* Nav Links Base Style */
.main-menu .animenu__nav li a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.7rem 1.25rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
    white-space: nowrap;
}

/* Hover glow effect */
.main-menu .animenu__nav li a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.2), 
        rgba(212, 175, 55, 0.05));
    border-radius: 50px;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Bottom highlight line */
.main-menu .animenu__nav li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Hover State */
.main-menu .animenu__nav li a:hover {
    color: #ffffff;
}

.main-menu .animenu__nav li a:hover::before {
    opacity: 1;
}

.main-menu .animenu__nav li a:hover::after {
    transform: translateX(-50%) scaleX(1);
    width: 30px;
}

/* Active State */
.main-menu .animenu__nav li.active > a {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
}

.main-menu .animenu__nav li.active > a::after {
    transform: translateX(-50%) scaleX(1);
    width: 30px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

/* Desktop Dropdown Styling */
.main-menu .animenu__nav li.has-dropdown {
    position: relative;
}

.main-menu .animenu__nav li.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-menu .animenu__nav li.has-dropdown > a .dropdown-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.main-menu .animenu__nav li.has-dropdown:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

.main-menu .animenu__nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: rgba(20, 20, 25, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 0.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(212, 175, 55, 0.1);
    z-index: 1000;
}

.main-menu .animenu__nav .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(212, 175, 55, 0.3);
}

.main-menu .animenu__nav .dropdown-menu::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(15, 15, 18, 0.98);
}

@media (min-width: 901px) {
    .main-menu .animenu__nav li.has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.main-menu .animenu__nav .dropdown-menu li {
    margin: 0;
}

.main-menu .animenu__nav .dropdown-menu li + li {
    margin-top: 0.25rem;
}

.main-menu .animenu__nav .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.main-menu .animenu__nav .dropdown-menu li a::before,
.main-menu .animenu__nav .dropdown-menu li a::after {
    display: none;
}

.main-menu .animenu__nav .dropdown-menu li a i {
    width: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: #D4AF37;
    opacity: 0.8;
}

.main-menu .animenu__nav .dropdown-menu li a:hover {
    background: rgba(212, 175, 55, 0.15);
    color: #ffffff;
    transform: translateX(3px);
}

.main-menu .animenu__nav .dropdown-menu li a:hover i {
    opacity: 1;
    color: #D4AF37;
}

.main-menu .animenu__nav .dropdown-menu li.active a {
    background: rgba(212, 175, 55, 0.2);
    color: #ffffff;
}

.main-menu .animenu__nav .dropdown-menu li.active a i {
    opacity: 1;
    color: #D4AF37;
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #D4AF37;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Menu Overlay - Hidden by default */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Navigation */
@media (max-width: 1100px) {
    .main-menu .animenu__nav {
        padding: 0.4rem;
        gap: 0.15rem;
    }
    
    .main-menu .animenu__nav li a {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    
    .main-menu .animenu__nav .dropdown-menu {
        min-width: 200px;
    }
    
    .main-menu .animenu__nav .dropdown-menu li a {
        padding: 0.75rem 1rem;
        font-size: 0.78rem;
    }
}

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
        padding: 6rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        border-left: 2px solid #D4AF37;
        z-index: 999;
    }
    
    .main-menu.active {
        right: 0;
    }
    
    .main-menu .animenu__nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        align-items: stretch;
    }
    
    .main-menu .animenu__nav li a {
        padding: 1rem 1.5rem;
        border-radius: 12px;
        font-size: 0.95rem;
        justify-content: flex-start;
        color: #333333 !important;
        background: rgba(212, 175, 55, 0.08);
    }
    
    .main-menu .animenu__nav li a:hover {
        background: rgba(212, 175, 55, 0.15);
        color: #000000 !important;
    }
    
    .main-menu .animenu__nav li.active > a {
        background: rgba(212, 175, 55, 0.2);
        color: #000000 !important;
    }
    
    .main-menu .animenu__nav > li:last-child > a {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
    }
    
    /* Mobile dropdown styling */
    .main-menu .animenu__nav li.has-dropdown {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    
    .main-menu .animenu__nav li.has-dropdown::after {
        display: none;
    }
    
    .main-menu .animenu__nav li.has-dropdown > a {
        width: 100%;
        justify-content: flex-start;
    }
    
    .main-menu .animenu__nav li.has-dropdown > a .dropdown-arrow {
        margin-left: auto;
        font-size: 0.7rem;
    }
    
    .main-menu .animenu__nav .dropdown-menu {
        position: static;
        transform: none !important;
        left: 0 !important;
        min-width: 100%;
        width: 100%;
        background: rgba(212, 175, 55, 0.08);
        border: none;
        border-radius: 10px;
        margin-top: 0;
        padding: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        /* Hidden by default on mobile */
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .main-menu .animenu__nav li.has-dropdown.open .dropdown-menu {
        max-height: 200px;
        opacity: 1;
        visibility: visible;
        margin-top: 0.5rem;
        padding: 0.4rem;
    }
    
    .main-menu .animenu__nav li.has-dropdown.open > a .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .main-menu .animenu__nav .dropdown-menu::before {
        display: none;
    }
    
    .main-menu .animenu__nav .dropdown-menu li {
        margin: 0;
    }
    
    .main-menu .animenu__nav .dropdown-menu li + li {
        margin-top: 0.25rem;
    }
    
    .main-menu .animenu__nav .dropdown-menu li:not(:last-child)::after {
        display: none;
    }
    
    .main-menu .animenu__nav .dropdown-menu li a {
        padding: 0.85rem 1rem !important;
        margin: 0 !important;
        font-size: 0.88rem !important;
        border-radius: 8px !important;
        background: rgba(212, 175, 55, 0.05) !important;
        text-transform: none !important;
        letter-spacing: 0.3px !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        border: none !important;
        box-shadow: none !important;
        color: #333333 !important;
    }
    
    .main-menu .animenu__nav .dropdown-menu li a::before,
    .main-menu .animenu__nav .dropdown-menu li a::after {
        display: none !important;
    }
    
    .main-menu .animenu__nav .dropdown-menu li a:hover {
        transform: none !important;
        background: rgba(212, 175, 55, 0.15) !important;
    }
    
    .main-menu .animenu__nav .dropdown-menu li a i:first-child {
        width: 28px !important;
        min-width: 28px !important;
        height: 28px !important;
        background: rgba(212, 175, 55, 0.15) !important;
        border-radius: 6px !important;
        font-size: 0.75rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #D4AF37 !important;
    }
    
    .main-menu .animenu__nav .dropdown-menu li.active a {
        background: rgba(212, 175, 55, 0.2) !important;
        padding: 0.85rem 1rem !important;
    }
    
    .main-menu .animenu__nav .dropdown-menu li.active a i:first-child {
        background: rgba(212, 175, 55, 0.3) !important;
    }
    
    /* Hamburger animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 85px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #B8960C, #D4AF37, #F4D160);
    z-index: 1001;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: calc(100vh - 85px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    overflow: hidden;
    margin-top: 0;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('banner.png') center/cover no-repeat;
    opacity: 0.08;
    z-index: 0;
    filter: blur(2px);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.03) 2px,
            rgba(212, 175, 55, 0.03) 4px
        );
    animation: grid-move 20s linear infinite;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* ============================================
   UNIFIED BUTTON SYSTEM
   ============================================ */

/* Base Button Reset */
.btn,
.btn-modern,
.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger,
.btn-outline,
.btn-small,
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Primary Button (Gold/Main CTA) */
.btn-modern,
.btn-primary {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D160 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-modern::before,
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-modern:hover::before,
.btn-primary:hover::before {
    left: 100%;
}

.btn-modern:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-modern:active,
.btn-primary:active {
    transform: translateY(0);
}

/* Secondary Button (Outlined) */
.btn-secondary {
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Success Button (Green) */
.btn-success {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Danger Button (Red) */
.btn-danger {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

/* Outline Button */
.btn-outline {
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Small Button */
.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D160 100%);
    color: #ffffff;
}

.btn-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Icon-only Button */
.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn-icon:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: scale(1.05);
}

/* Action Buttons (for cards/tables) */
.action-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: #666666;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-btn:hover {
    transform: scale(1.08);
}

.action-btn.edit:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
    color: #60a5fa;
}

.action-btn.delete:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    color: #f87171;
}

.action-btn.view:hover,
.action-btn.invoice:hover {
    background: rgba(96, 165, 250, 0.15);
    border-color: #60a5fa;
    color: #60a5fa;
}

.action-btn.maps:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    color: #34d399;
}

.action-btn.reset:hover,
.action-btn.pause:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: #f59e0b;
    color: #fbbf24;
}

.action-btn.play:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    color: #34d399;
}

/* Submit Button (Forms) */
.btn-submit {
    padding: 0.875rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #F4D160 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-submit i {
    font-size: 1rem;
}

/* Large Submit Button (Dienst Form) */
.btn-submit-dienst {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #F4D160 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.btn-submit-dienst:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.45);
}

.btn-submit-dienst i {
    font-size: 1.1rem;
}

/* Toggle/Delete Buttons (Admin Tables) */
.btn-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    color: #60a5fa;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-toggle:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    transform: scale(1.08);
}

.btn-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    color: #f87171;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-delete:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    transform: scale(1.08);
}

/* Assign/Save Small Button */
.btn-assign-small {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 1rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #F4D160 100%);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-assign-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.btn-assign-small i {
    font-size: 0.75rem;
}

/* Opslag Button */
.btn-opslag {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #F4D160 100%);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.btn-opslag:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

/* Login Button */
.btn-login {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #F4D160 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

/* Cancel Button */
.btn-cancel {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #f87171;
}

/* Save Button */
.btn-save {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Claim Button (Open Diensten) */
.btn-claim {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.btn-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

/* Today Button (Rooster) */
.btn-today {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-today:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
    transform: translateY(-1px);
}

/* Today Pill */
.btn-today-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #F4D160 100%);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-today-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Gelezen Button */
.btn-gelezen {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-gelezen:hover {
    background: rgba(16, 185, 129, 0.25);
    border-color: #10b981;
    transform: translateY(-1px);
}

/* More Info Button */
.btn-more-info {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    background: rgba(212, 175, 55, 0.08);
    color: var(--accent-gold);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-more-info:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--accent-gold);
    transform: translateY(-1px);
}

.btn-more-info i {
    font-size: 0.75rem;
}

/* Dienst Close Button */
.btn-dienst-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dienst-close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

/* Button Sizes */
.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-xs {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
}

/* Button with full width */
.btn-block {
    width: 100%;
}

/* Button Group */
.btn-group {
    display: flex;
    gap: 0.5rem;
}

.btn-group .action-btn {
    flex: 1;
}

/* Disabled State */
.btn-modern:disabled,
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-submit:disabled,
.btn-login:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Kleine toewijzingsknop + select voor diensten (admin) */
.dienst-assign-form {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 0.25rem 0 0;
}

/* Tweede regel voor inline dienst-bewerking (datum/tijd/locatie) */
.dienst-edit-form {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.dienst-edit-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 0.78rem;
    padding: 0.25rem 0.45rem;
}

.dienst-edit-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4);
}

.dienst-edit-date {
    max-width: 135px;
}

.dienst-edit-time {
    max-width: 95px;
}

.dienst-edit-select {
    max-width: 130px;
}

.dienst-edit-loc {
    max-width: 160px;
}

.dienst-edit-text {
    flex: 1;
    min-width: 180px;
}

.dienst-edit-save {
    margin-left: auto;
}

.dienst-assign-select {
    max-width: 200px;
    padding: 0.1rem 0.1rem;
    border-radius: 0;
    border: none;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.6);
    background: transparent;
    color: var(--accent-gold);
    font-size: 0.8rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.dienst-assign-select:focus {
    outline: none;
    border-bottom-style: solid;
    border-bottom-color: var(--accent-gold);
    box-shadow: none;
}

.btn-assign-small {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: none;
    background: var(--accent-gold);
    color: #000;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

/* Uurtarief editor in gebruikersbeheer */
.tarief-editor {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.5rem 0.6rem;
    width: 100%;
}

.tarief-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
}

.tarief-label {
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    flex: 1;
}

.tarief-input {
    width: 90px;
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(5, 5, 5, 0.95);
    color: var(--text-light);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.tarief-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.5);
}

.tarief-save-wrapper {
    margin-top: 0.3rem;
}

@media (max-width: 768px) {
    .tarief-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .tarief-input {
        width: 100%;
    }

    /* Op mobiel: edit-rij onder elkaar en niet tegen de rechterkant geplakt */
    .dienst-acties-cell {
        min-width: 220px;
    }

    .dienst-assign-form,
    .dienst-edit-form {
        width: 100%;
        justify-content: flex-start;
    }

    .dienst-edit-form {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .dienst-edit-input {
        width: 100%;
        max-width: none;
    }

    .dienst-edit-save {
        align-self: flex-start;
        margin-left: 0;
        margin-top: 0.25rem;
    }
}

.btn-assign-small i {
    font-size: 0.75rem;
}

.btn-assign-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-dark);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--bg-section);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.monthly-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .monthly-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .monthly-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .monthly-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(26, 77, 125, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Cards */
.services-section {
    padding: 6rem 0;
    background: #f5f5f5;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #000000 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.service-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
    cursor: pointer;
}

.service-card:active {
    transform: translateY(-8px) scale(0.98);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold), #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, #0a0a0a 50%, rgba(212, 175, 55, 0.1) 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-dark);
    color: var(--text-light);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-btn:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--bg-section);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: var(--transition);
    filter: brightness(1.05) saturate(0.8) hue-rotate(10deg);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-text h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-section);
    text-align: center;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    min-height: 350px;
}

.testimonial-card {
    background: var(--bg-dark);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    margin: 0 0.2rem;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background: var(--bg-dark);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 1rem;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--accent-gold);
    transform: scale(1.3);
}

.testimonial-dots .dot:hover {
    background: var(--accent-gold);
}

/* Partners Section */
.partners-section {
    padding: 4rem 0;
    background: var(--bg-dark);
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.partner-logo {
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.partner-logo:hover {
    background: #f8f8f8;
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    filter: brightness(1.05) saturate(0.8) hue-rotate(10deg);
    transition: var(--transition);
}

.footer-logo img:hover {
    filter: brightness(1.2) saturate(0.8) hue-rotate(10deg);
}

.footer h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer p, .footer address {
    color: var(--text-gray);
    line-height: 1.8;
    font-style: normal;
}

.footer a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--accent-gold);
}

.socialfooter {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin-top: 1.5rem;
}

.socialfooter li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--bg-section);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.socialfooter li a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.copy-right {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Floating Action Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fab-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #D4AF37);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
    position: relative;
    animation: pulse-ring 2s infinite;
}

.fab-button:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.7);
}

.fab-button.active {
    transform: rotate(45deg);
}

.fab-menu {
    position: absolute;
    bottom: 80px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.fab-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.fab-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--bg-dark);
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    color: var(--text-light);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(10px);
}

.fab-menu.active .fab-item {
    transform: translateY(0);
}

.fab-menu.active .fab-item:nth-child(1) {
    transition-delay: 0.05s;
}

.fab-menu.active .fab-item:nth-child(2) {
    transition-delay: 0.1s;
}

.fab-menu.active .fab-item:nth-child(3) {
    transition-delay: 0.15s;
}

.fab-menu.active .fab-item:nth-child(4) {
    transition-delay: 0.2s;
}

.fab-item:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.fab-item i {
    font-size: 1.2rem;
}

@keyframes pulse-ring {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5), 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5), 0 0 0 15px rgba(212, 175, 55, 0);
    }
}

/* WhatsApp Button */
.whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp a {
    display: block;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp img {
    width: 35px;
    height: 35px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
    }
}

/* Mobile Menu Toggle */
.animenu__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 12px;
    transition: var(--transition);
}

.animenu__toggle:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.animenu__toggle__bar {
    width: 28px;
    height: 3px;
    background: var(--accent-gold);
    transition: var(--transition);
    border-radius: 2px;
}

.animenu__toggle.active .animenu__toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.animenu__toggle.active .animenu__toggle__bar:nth-child(2) {
    opacity: 0;
}

.animenu__toggle.active .animenu__toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    #header .container {
        padding: 0 1rem;
    }
    
    #header .row {
        padding: 0;
    }
    
    .header-right {
        padding-right: 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    body {
        padding-top: 85px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}

/* Login Page Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

#particles-canvas-login {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.login-card {
    background: #ffffff;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 3rem;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
    filter: brightness(1.05) saturate(0.8) hue-rotate(10deg);
}

.login-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #000000 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

.form-group input {
    padding: 1rem 1.25rem;
    background: #f8f8f8;
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    color: #333333;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.form-group input::placeholder {
    color: #999999;
}

.form-error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b7a;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* btn-login is now defined in UNIFIED BUTTON SYSTEM above */

.login-footer {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.back-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--accent-gold);
}

.back-link i {
    margin-right: 0.5rem;
}

/* Dashboard Welcome Section */
.dashboard-welcome {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    text-align: center;
    overflow: hidden;
}

.welcome-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-content h1 span {
    color: var(--accent-gold);
    background: none;
    -webkit-text-fill-color: var(--accent-gold);
}

.welcome-content p {
    color: var(--text-gray);
    font-size: 1.2rem;
}

/* Rooster Header */
.rooster-header {
    padding: 8rem 0 3rem;
    background: var(--bg-section);
    text-align: center;
}

.rooster-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rooster-header h1 i {
    margin-right: 1rem;
    color: var(--accent-gold);
    background: none;
    -webkit-text-fill-color: var(--accent-gold);
}

.rooster-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Week Navigation */
.week-navigation {
    padding: 2rem 0;
    background: var(--bg-dark);
}

.week-nav-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.week-filter-row {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.week-filter-row .filter-form {
    display: flex;
    align-items: center;
}

.week-filter-row .filter-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.week-filter-row .filter-select-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
    pointer-events: none;
}

.week-filter-row .filter-select-wrapper select {
    padding: 0.7rem 2.5rem 0.7rem 2.75rem;
    background: #f8f8f8;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
    min-width: 220px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c0c0c0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    transition: all 0.3s ease;
}

.week-filter-row .filter-select-wrapper select:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.week-filter-row .filter-select-wrapper select:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.08);
}

.current-week {
    font-size: 1.5rem;
    color: var(--text-light);
    text-align: center;
    flex: 1;
}

.week-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 10px;
    color: var(--accent-gold);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.week-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-today {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold), #D4AF37);
    color: var(--primary-dark);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.btn-today:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.btn-today i {
    margin-right: 0.5rem;
}

/* Schedule Grid */
.schedule-section {
    padding: 3rem 0;
    background: #f5f5f5;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.schedule-day {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.schedule-day:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.schedule-day.weekend {
    background: rgba(212, 175, 55, 0.05);
}

.schedule-day.today {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    }
}

.today-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), #D4AF37);
    color: var(--primary-dark);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badge-bounce 0.5s ease-out;
}

@keyframes badge-bounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.day-header {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    text-align: center;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.day-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-date {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

.day-count {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
    font-style: italic;
}

.day-shifts {
    padding: 1rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Admin view: scrollbare container bij veel diensten */
.day-shifts.scrollable {
    max-height: 400px;
    overflow-y: auto;
    min-height: auto;
}

.day-shifts.scrollable::-webkit-scrollbar {
    width: 6px;
}

.day-shifts.scrollable::-webkit-scrollbar-track {
    background: #f8f8f8;
    border-radius: 3px;
}

.day-shifts.scrollable::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
}

.day-shifts.scrollable::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}

/* Compacte shift weergave voor admin */
.schedule-shift.compact {
    padding: 0.6rem 0.8rem;
}

.schedule-shift.compact .shift-medewerker {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.schedule-shift.compact .shift-time {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.schedule-shift.compact .shift-type,
.schedule-shift.compact .shift-location {
    font-size: 0.75rem;
}

.schedule-shift.compact .dienst-status-badge {
    margin: 0.15rem 0;
}

.schedule-shift.compact .dienst-status-badge .badge {
    font-size: 0.65rem;
    padding: 0.1rem 0.5rem;
}

.schedule-shift {
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid;
    background: #fafafa;
}

.schedule-shift.shift-morning {
    border-left-color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.schedule-shift.shift-evening {
    border-left-color: #FF9800;
    background: rgba(255, 152, 0, 0.1);
}

.schedule-shift.shift-night {
      border-left-color: #2196F3;
      background: rgba(33, 150, 243, 0.1);
  }
  
.dienst-status-badge {
      margin: 0.2rem 0 0.35rem;
      text-align: left;
  }
  
  .dienst-status-badge .badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.15rem 0.6rem;
      border-radius: 999px;
      font-size: 0.7rem;
  }
  
  .shift-time {
      font-weight: 700;
      color: var(--accent-gold);
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
  }

.shift-type {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.shift-location {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.shift-actions {
    margin-top: 0.5rem;
}

.shift-medewerker {
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.shift-delete {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b7a;
    border-radius: 50%;
    font-size: 0.75rem;
    opacity: 0;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.schedule-shift:hover .shift-delete {
    opacity: 1;
}

.shift-delete:hover {
    background: rgba(220, 53, 69, 0.4);
    color: #fff;
    transform: scale(1.1);
}

/* Berichten Styling */
.berichten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.bericht-card {
    background: var(--bg-section);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem;
    transition: var(--transition);
}

.bericht-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.bericht-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.bericht-header h3 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin: 0;
}

.bericht-date {
    font-size: 0.85rem;
    color: var(--text-gray);
    white-space: nowrap;
}

.bericht-body p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.bericht-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bericht-author {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Berichten Banner (voor rooster pagina) */
.berichten-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(26, 77, 125, 0.1));
    padding: 1.5rem 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.berichten-banner h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.berichten-lijst {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bericht-banner-item {
    background: var(--bg-dark);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bericht-banner-item strong {
    color: var(--text-light);
    font-size: 1rem;
}

.bericht-banner-item span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.bericht-banner-item small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Toggle button styling */
.btn-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(33, 150, 243, 0.2);
    color: #64b5f6;
    border-radius: 6px;
    margin-right: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-toggle:hover {
    background: rgba(33, 150, 243, 0.4);
    transform: scale(1.1);
}

/* Gelezen button */
.btn-gelezen {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.btn-gelezen:hover {
    background: rgba(76, 175, 80, 0.3);
    transform: translateY(-2px);
}

.btn-more-info {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.06);
    color: var(--accent-gold);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-more-info i {
    font-size: 0.8rem;
}

.btn-more-info:hover {
    background: rgba(212, 175, 55, 0.16);
    border-color: var(--accent-gold);
    transform: translateY(-1px);
}

/* Submit button fix */
.btn-submit {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--accent-gold), #D4AF37);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Beschikbaarheid Kalender */
.beschikbaarheid-kalender {
    background: var(--bg-dark);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.kalender-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dag-naam-header {
    text-align: center;
    font-weight: 700;
    color: var(--accent-gold);
    padding: 0.5rem;
    font-size: 0.9rem;
}

.kalender-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.kalender-dag {
    aspect-ratio: 1;
    background: #fafafa;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.kalender-dag:not(.leeg):hover {
    transform: scale(1.05);
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.kalender-dag.leeg {
    background: transparent;
    border: none;
    cursor: default;
}

.kalender-dag.vandaag {
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.kalender-dag.verleden {
    opacity: 0.5;
}

.kalender-dag.status-ja {
    background: rgba(33, 150, 243, 0.15); /* Blauw - beschikbaar */
    border-color: #2196F3;
}

.kalender-dag.status-nee {
    background: rgba(220, 53, 69, 0.15); /* Rood - onbeschikbaar */
    border-color: #dc3545;
}

.kalender-dag.status-misschien {
    background: rgba(255, 152, 0, 0.15);
    border-color: #FF9800;
}

    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.status-indicator {
    font-size: 1rem;
}

.status-indicator i {
    color: var(--text-light);
}

.kalender-dag.status-ja .status-indicator i {
    color: #4CAF50;
}

.kalender-dag.status-nee .status-indicator i {
    color: #dc3545;
}

.kalender-dag.status-misschien .status-indicator i {
    color: #FF9800;
}

.kalender-dag.status-vakantie .status-indicator i {
    color: #9C27B0;
}

/* Beschikbaarheid Legenda */
.beschikbaarheid-legenda {
    background: var(--bg-dark);
    border-radius: 15px;
    padding: 2rem;
}

.beschikbaarheid-legenda h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legenda-items {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legenda-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legenda-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid;
}

.legenda-box.status-ja {
    background: rgba(33, 150, 243, 0.15);
    border-color: #2196F3;
    color: #2196F3;
}

.legenda-box.status-nee {
    background: rgba(220, 53, 69, 0.15);
    border-color: #dc3545;
    color: #dc3545;
}

.legenda-box.status-misschien {
    background: rgba(255, 152, 0, 0.15);
    border-color: #FF9800;
    color: #FF9800;
}

.legenda-box.status-onbekend {
    background: #fafafa;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #ffffff;
    margin: 5% auto;
    padding: 2rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: var(--text-gray);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.day-off {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-gray);
}

.day-off i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    opacity: 0.5;
}

.day-off p {
    font-weight: 600;
    font-size: 1rem;
}

/* Legend */
.schedule-legend {
    padding: 2rem 0;
    background: var(--bg-dark);
}

.schedule-legend h3 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* =============================================
   MODERN PLANNER STYLES
   ============================================= */

.planner-section-modern {
    padding: 2rem 0 4rem;
    background: #ffffff;
}

.planner-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.5rem;
    align-items: start;
}

/* Planner Cards */
.planner-card {
    background: #ffffff;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.planner-left .planner-card {
    position: sticky;
    top: 100px;
}

/* Month Navigation */
.planner-month-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.planner-nav-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.2s ease;
}

.planner-nav-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-light);
    border-color: rgba(212, 175, 55, 0.3);
}

.planner-month-title {
    text-align: center;
}

.planner-month-title .month-name {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

.planner-month-title .month-year {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 2px;
}

/* Calendar Grid */
.planner-cal-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.planner-cal-day-name {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
}

.planner-cal-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.planner-cal-cell {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-light);
    position: relative;
    transition: all 0.2s ease;
    min-height: 42px;
}

.planner-cal-cell:hover:not(.empty) {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.planner-cal-cell.empty {
    background: transparent;
    pointer-events: none;
}

.planner-cal-cell .cell-day {
    font-size: 0.9rem;
    font-weight: 500;
}

.planner-cal-cell .cell-dot {
    position: absolute;
    bottom: 6px;
    width: 5px;
    height: 5px;
    background: #4CAF50;
    border-radius: 50%;
}

.planner-cal-cell.today {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
}

.planner-cal-cell.today .cell-day {
    color: var(--accent-gold);
    font-weight: 700;
}

.planner-cal-cell.selected {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.1) 100%);
    border-color: #4CAF50;
}

.planner-cal-cell.selected .cell-day {
    color: #4CAF50;
    font-weight: 700;
}

.planner-cal-cell.has-shift:not(.selected) {
    background: rgba(76, 175, 80, 0.06);
}

/* Employee Select */
.planner-employee-select {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.planner-employee-select .select-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.planner-employee-select .select-label i {
    color: var(--accent-gold);
}

.planner-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #f8f8f8;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c0c0c0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.planner-select option {
    background: #ffffff;
    color: #333333;
    padding: 0.5rem;
}

.planner-select:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.planner-select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* Form Card */
.planner-form-card {
    padding: 0;
    overflow: hidden;
}

/* Date Header */
.planner-date-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.02) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.planner-date-header .date-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 12px;
    color: #4CAF50;
    font-size: 1.25rem;
}

.planner-date-header .date-info {
    flex: 1;
}

.planner-date-header .date-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.planner-date-header .date-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 2px;
}

.planner-date-header .date-employee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: #f8f8f8;
    border-radius: 20px;
}

.planner-date-header .employee-avatar {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    border-radius: 50%;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
}

.planner-date-header .employee-name {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Existing Shifts */
.planner-existing-shifts {
    padding: 1.5rem;
}

.planner-existing-shifts .existing-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.planner-existing-shifts .existing-header i {
    color: var(--accent-gold);
}

.existing-shift-card {
    background: #fafafa;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.existing-shift-card .shift-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.existing-shift-card .shift-employee-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.existing-shift-card .shift-employee-badge .emp-avatar {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B8960C 100%);
    border-radius: 50%;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
}

.existing-shift-card .shift-employee-badge .emp-name {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

.existing-shift-card .shift-time-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.existing-shift-card .shift-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.existing-shift-card .shift-type {
    font-weight: 500;
    color: var(--text-light);
}

.existing-shift-card .shift-location {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.existing-shift-card .shift-location i {
    margin-right: 0.25rem;
    color: var(--accent-gold);
}

.existing-shift-card .shift-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.shift-reassign-select {
    flex: 1;
    min-width: 150px;
    padding: 0.5rem 0.75rem;
    background: #f8f8f8;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-family: inherit;
}

.btn-delete-shift {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    color: #dc3545;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-delete-shift:hover {
    background: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.5);
}

/* Inline Shift Edit Form */
.shift-edit-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shift-time-inputs {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.shift-time-input {
    width: 90px;
    padding: 0.4rem 0.5rem;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-family: inherit;
}

.shift-time-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
}

.time-sep {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.shift-edit-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.shift-type-select,
.shift-location-select {
    flex: 1;
    min-width: 120px;
    padding: 0.5rem 0.6rem;
    background: #f8f8f8;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.8rem;
    font-family: inherit;
}

.shift-type-select:focus,
.shift-location-select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.shift-medewerker-select {
    flex: 1;
}

.btn-save-shift-inline {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 8px;
    color: #28a745;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-save-shift-inline:hover {
    background: rgba(40, 167, 69, 0.25);
    border-color: rgba(40, 167, 69, 0.5);
}

/* Add Form */
.planner-add-form {
    padding: 1.5rem;
}

.planner-add-form .form-section {
    margin-bottom: 1.5rem;
}

.planner-add-form .section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    margin-bottom: 0.75rem;
}

.planner-add-form .section-title i {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
}

.planner-add-form .section-title .optional {
    font-weight: 400;
    color: var(--text-gray);
}

.planner-add-form .time-inputs {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
}

.planner-add-form .time-field {
    flex: 1;
}

.planner-add-form .time-field label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 0.35rem;
}

.planner-add-form .time-field input {
    width: 100%;
    padding: 0.75rem;
    background: #f8f8f8;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    text-align: center;
}

.planner-add-form .time-field input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.planner-add-form .time-separator {
    color: var(--text-gray);
    padding-bottom: 0.75rem;
}

.planner-add-form .detail-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.planner-add-form .field-group label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 0.35rem;
}

.planner-add-form .field-group select {
    width: 100%;
    padding: 0.75rem;
    background: #f8f8f8;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
}

.planner-add-form .field-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.planner-add-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: #f8f8f8;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
}

.planner-add-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.planner-add-form textarea::placeholder {
    color: var(--text-gray);
}

.btn-save-shift {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #4CAF50 0%, #43A047 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-save-shift:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.inline-form {
    display: inline;
}

/* Add form with shifts above */
.planner-add-form.has-shifts-above {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.planner-add-form .add-form-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.planner-add-form .add-form-header i {
    color: #4CAF50;
}

/* No selection state */
.planner-no-selection {
    padding: 3rem 1.5rem;
    text-align: center;
}

.planner-no-selection .no-selection-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    margin: 0 auto 1rem;
    color: var(--text-gray);
    font-size: 1.5rem;
}

.planner-no-selection p {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.planner-no-selection span {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Responsive Planner */
@media (max-width: 992px) {
    .planner-container {
        grid-template-columns: 1fr;
    }
    
    .planner-left .planner-card {
        position: static;
    }
}

@media (max-width: 600px) {
    .planner-card {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .planner-cal-cell {
        min-height: 38px;
        border-radius: 8px;
    }
    
    .planner-cal-cell .cell-day {
        font-size: 0.8rem;
    }
    
    .planner-date-header {
        flex-wrap: wrap;
        padding: 1rem;
    }
    
    .planner-date-header .date-employee {
        width: 100%;
        justify-content: center;
        margin-top: 0.75rem;
    }
    
    .planner-add-form .detail-fields {
        grid-template-columns: 1fr;
    }
    
    .planner-add-form .time-inputs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .planner-add-form .time-separator {
        display: none;
    }
    
    .existing-shift-card .shift-actions {
        flex-direction: column;
    }
    
    .shift-reassign-select {
        width: 100%;
    }
}

.legend-items {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legend-color {
    width: 30px;
    height: 20px;
    border-radius: 4px;
    border-left: 4px solid;
}

.legend-color.shift-morning {
    background: rgba(76, 175, 80, 0.1);
    border-left-color: #4CAF50;
}

.legend-color.shift-evening {
    background: rgba(255, 152, 0, 0.1);
    border-left-color: #FF9800;
}

.legend-color.shift-night {
    background: rgba(33, 150, 243, 0.1);
    border-left-color: #2196F3;
}

.legend-item span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Monthly Stats */
.monthly-stats {
    padding: 4rem 0;
    background: var(--bg-section);
}

/* Dashboard month overview calendar */
.month-overview-card {
    background: #f8f8f8;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.month-overview-title {
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.month-overview-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(45px, 1fr));
    gap: 0.5rem;
    justify-items: center;
}

.month-overview-grid > div {
    width: 100%;
    min-width: 40px;
    max-width: 60px;
}

.month-overview-legend {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    text-align: center;
}

.month-overview-dot {
    color: #4caf50;
    font-size: 0.6rem;
    margin-right: 0.35rem;
}

@media (max-width: 768px) {
    .month-overview-card {
        padding: 1.5rem 1rem;
        max-width: 100%;
    }

    .month-overview-grid {
        gap: 0.4rem;
        grid-template-columns: repeat(7, 1fr);
    }

    .month-overview-grid > div {
        min-width: 35px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .month-overview-card {
        padding: 1rem 0.75rem;
    }

    .month-overview-title {
        font-size: 1.1rem;
    }

    .month-overview-grid {
        gap: 0.3rem;
    }

    .month-overview-grid > div {
        min-width: 30px;
        font-size: 0.85rem;
    }
}

/* Month overview calendar day cells */
.month-overview-grid .day-header {
    text-align: center;
    color: var(--accent-gold);
    font-weight: 600;
    padding: 0.5rem;
    background: transparent;
    border: none;
    border-bottom: none;
}

.month-overview-grid .day-cell {
    position: relative;
    text-align: center;
    padding: 0.8rem 0.5rem;
    background: #f8f8f8;
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--text-gray);
    transition: all 0.3s ease;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.month-overview-grid .day-cell:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.month-overview-grid .day-cell.empty {
    background: transparent;
    border: none;
}

.month-overview-grid .day-cell.empty:hover {
    transform: none;
}

.month-overview-grid .day-cell.today {
    background: rgba(212, 175, 55, 0.3);
    border: 2px solid var(--accent-gold);
}

.month-overview-grid .day-cell.has-shift {
    color: #4caf50;
    font-weight: 700;
    cursor: pointer;
}

.month-overview-grid .day-cell .shift-indicator {
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 0.7rem;
    color: #4caf50;
}

@media (max-width: 480px) {
    .month-overview-grid .day-cell {
        padding: 0.5rem 0.3rem;
        min-height: 35px;
    }

    .month-overview-grid .day-cell .shift-indicator {
        font-size: 0.6rem;
        top: 1px;
        right: 1px;
    }
}

/* Shift Cards (Dashboard) */
.shifts-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.shift-card {
    background: var(--bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    transition: var(--transition);
}

.shift-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.shift-date {
    text-align: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(26, 77, 125, 0.15));
    border-radius: 10px;
}

.shift-date .day {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.shift-date .month {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.shift-details h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.shift-details p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0.25rem 0;
}

.shift-details i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
    width: 20px;
}

.shift-status {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.shift-status i {
    margin-right: 0.5rem;
}

.status-confirmed {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-pending {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .login-card {
        padding: 2rem 1.5rem;
    }
    
    .dashboard-welcome {
        padding: 6rem 0 3rem;
    }
    
    .welcome-content h1 {
        font-size: 2rem;
    }
    
    .rooster-header h1 {
        font-size: 2rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .week-nav-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .current-week {
        order: -1;
        font-size: 1.2rem;
    }
    
    .week-btn {
        width: 100%;
    }
    
    .shift-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .shift-card:hover {
        transform: translateY(-5px);
    }
}

/* Piket Chat Widget */
.piket-chat {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9500;
}

.piket-chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--accent-gold), #D4AF37);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    transition: var(--transition);
}

.piket-chat-toggle:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
}

.piket-chat-window {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 340px;
    max-height: 70vh;
    background: linear-gradient(135deg, rgba(10,10,10,0.98) 0%, rgba(26,26,40,0.98) 100%);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.75);
    display: none;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto; /* hele widget scrolbaar maken zodat je altijd bij de HR-knop kan */
}

.piket-chat-window.open {
    display: flex;
}

.piket-chat-header {
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.piket-chat-header strong {
    color: var(--accent-gold);
}

.piket-chat-subtitle {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.piket-chat-close {
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.piket-chat-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.piket-chat-body {
    padding: 0.75rem 0.75rem 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.piket-chat-messages {
    max-height: 300px;
    min-height: 140px;
    overflow-y: auto;
    padding-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.piket-chat-message {
    margin-bottom: 0.35rem;
    display: flex;
    align-items: flex-start;
}

.piket-chat-message-inner {
    max-width: 100%;
    padding: 0.55rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    line-height: 1.45;
    white-space: pre-wrap;      /* behoud nieuwe regels in bot-tekst */
    word-wrap: break-word;
}

/* iets andere vormen per type voor mooiere bubbles */
.piket-chat-message.user .piket-chat-message-inner {
    border-radius: 16px 16px 4px 16px;
}

.piket-chat-message.hr .piket-chat-message-inner {
    border-radius: 16px 16px 16px 4px;
}

.piket-chat-message.bot .piket-chat-message-inner,
.piket-chat-message.system .piket-chat-message-inner {
    border-radius: 10px;
}

.piket-chat-message.user {
    justify-content: flex-end;
}

.piket-chat-message.user .piket-chat-message-inner {
    background: rgba(33, 150, 243, 0.9);
    color: #fff;
}

.piket-chat-message.hr .piket-chat-message-inner {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid #4CAF50;
    color: #c8e6c9;
}

.piket-chat-message.bot .piket-chat-message-inner,
.piket-chat-message.system .piket-chat-message-inner {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--text-gray);
}

.piket-chat-message.system {
    justify-content: center;
}

.piket-chat-message.system .piket-chat-message-inner {
    border-radius: 10px;
    font-size: 0.75rem;
}

.piket-chat-quick {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.5rem;
}

.piket-chat-intro {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.4rem;
}

.piket-chat-quick-btn,
.piket-chat-hr-btn {
    width: 100%;
    text-align: left;
    margin-bottom: 0.35rem;
    padding: 0.45rem 0.7rem;
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: #fafafa;
    color: var(--text-light);
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.piket-chat-quick-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.piket-chat-hr-btn {
    background: rgba(220, 53, 69, 0.18);
    border-color: rgba(220, 53, 69, 0.5);
}

.piket-chat-hr-btn:hover {
    background: rgba(220, 53, 69, 0.3);
}

.piket-chat-divider {
    text-align: center;
    margin: 0.35rem 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
}

.piket-chat-divider span {
    background: rgba(10, 10, 10, 0.9);
    padding: 0 0.35rem;
    position: relative;
    z-index: 1;
}

.piket-chat-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 0;
}

.piket-chat-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.4rem;
}

.piket-chat-form {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

#piket-chat-input {
    flex: 1;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-light);
    font-size: 0.85rem;
}

.piket-chat-send {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--accent-gold), #D4AF37);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.piket-chat-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.piket-chat-close-chat {
    margin-top: 0.2rem;
    padding: 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    cursor: pointer;
    text-decoration: underline;
}

.piket-chat-close-chat:hover {
    color: #ffffff;
}

.piket-chat-new-wrapper {
    margin-top: 0.5rem;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.piket-chat-closed-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.35rem;
}

.piket-chat-new-chat {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    background: transparent;
    color: var(--accent-gold);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.piket-chat-new-chat:hover {
    background: rgba(212, 175, 55, 0.15);
}

@media (max-width: 480px) {
    .piket-chat-window {
        right: 8px;
        left: 8px;
        width: auto;
        bottom: 76px;
        max-height: 80vh; /* meer hoogte op telefoon */
        border-radius: 14px;
    }
    .piket-chat-messages {
        max-height: 55vh;
        min-height: 120px;
    }
    .piket-chat-quick-btn,
    .piket-chat-hr-btn {
        padding: 0.55rem 0.85rem;
        font-size: 0.9rem;   /* grotere tap targets */
    }
    .piket-chat-intro {
        font-size: 0.9rem;
    }
    #piket-chat-input {
        font-size: 0.9rem;
        padding: 0.55rem 0.85rem;
    }
    .piket-chat-send {
        width: 38px;
        height: 38px;
    }
}

/* Admin Panel Styles */
.admin-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: #f8f8f8;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    background: #ffffff;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: rgba(212, 175, 55, 0.1);
}

.admin-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.admin-table td {
    padding: 1.25rem 1rem;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.admin-table tbody tr {
    transition: var(--transition);
}

.admin-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-dagdienst {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.badge-avonddienst {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.badge-nachtdienst {
    background: rgba(33, 150, 243, 0.2);
    color: #2196F3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.badge-evenement {
    background: rgba(156, 39, 176, 0.2);
    color: #9C27B0;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.badge-bevestigd,
.badge-gepland {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.badge-afwachting {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.badge-geannuleerd {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b7a;
    border: 1px solid rgba(220, 53, 69, 0.4);
}

/* Action Buttons */
.btn-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    color: #dc3545;
    transition: var(--transition);
    text-decoration: none;
}

.btn-delete:hover {
    background: rgba(220, 53, 69, 0.2);
    border-color: #dc3545;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-table {
        font-size: 0.85rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.75rem 0.5rem;
    }

    /* Compactere velden voor Nieuwe Dienst Toevoegen op telefoon (tablet + telefoon) */
    .admin-form {
        padding: 1.75rem 1.5rem;
        max-width: 620px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }

    /* Specifiek voor de Nieuwe Dienst Toevoegen-sectie op admin_rooster */
    .services-section .admin-form {
        max-width: 520px;
        width: auto;
        margin-left: auto;
        margin-right: auto;
    }

    /* Iets ruimere horizontale padding zodat het formulier duidelijk binnen de sectie valt */
    .services-section .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .admin-form .form-group input,
    .admin-form .form-group select,
    .admin-form .form-group textarea {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }

    /* Op rooster-pagina: maak de velden iets smaller en centreer ze in de kaart */
    .services-section .admin-form .form-group input,
    .services-section .admin-form .form-group select,
    .services-section .admin-form .form-group textarea {
        width: 88%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .services-section .admin-form .btn-modern,
    .services-section .admin-form button[type="submit"] {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0.75rem;
    }
}

@media (max-width: 520px) {
    /* Extra compact op kleine telefoons */
    .admin-form {
        padding: 1.25rem 1rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    /* Op de rooster-pagina mag het formulier iets smaller zijn zodat het niet tegen de rand aan lijkt te plakken */
    .services-section .admin-form {
        max-width: 480px;
        width: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .admin-form .form-group label {
        font-size: 0.85rem;
    }

    .admin-form .form-group input,
    .admin-form .form-group select,
    .admin-form .form-group textarea {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* Portal navbar – moderne premium design voor portal pagina's */
#header.portal-header .row {
    align-items: center;
    min-height: 85px;
    gap: 1.5rem;
}

#header.portal-header .header-left {
    margin-right: 2rem;
}

/* Desktop nav */
.portal-nav-shell {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.portal-nav {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.portal-nav-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 16px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
        rgba(12, 12, 15, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.portal-nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.portal-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    overflow: hidden;
}

.portal-nav-link-label {
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.portal-nav-link-dot {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
}

.portal-nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.portal-nav-link:hover {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

.portal-nav-link:hover .portal-nav-link-dot {
    background: rgba(212, 175, 55, 0.8);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.portal-nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.portal-nav-link--active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 
        0 0 0 1px rgba(212, 175, 55, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.portal-nav-link--active .portal-nav-link-dot {
    background: linear-gradient(135deg, var(--accent-gold), #d4af37);
    box-shadow: 
        0 0 16px rgba(212, 175, 55, 0.8),
        0 0 4px rgba(212, 175, 55, 1),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.portal-nav-link--active::before {
    opacity: 1;
    transform: scale(1);
}

/* Mobile toggle */
.portal-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 5, 5, 0.96);
    color: var(--text-light);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.portal-menu-lines {
    position: relative;
    width: 18px;
    height: 14px;
}

.portal-menu-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--text-light);
    transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.2s ease,
                top 0.26s cubic-bezier(0.16, 1, 0.3, 1),
                bottom 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

.portal-menu-line:nth-child(1) {
    top: 0;
}

.portal-menu-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.portal-menu-line:nth-child(3) {
    bottom: 0;
}

.portal-menu-toggle[aria-expanded="true"] .portal-menu-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.portal-menu-toggle[aria-expanded="true"] .portal-menu-line:nth-child(2) {
    opacity: 0;
}

.portal-menu-toggle[aria-expanded="true"] .portal-menu-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile fullscreen nav */
.portal-mobile-nav {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.98) 45%, rgba(24, 24, 32, 0.98) 100%);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.portal-mobile-nav-inner {
    max-width: 480px;
    margin: 80px auto 24px auto;
    padding: 1.25rem 1.1rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.22), transparent 55%),
                rgba(5, 5, 10, 0.96);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.9);
}

.portal-mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.portal-mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.portal-mobile-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.portal-mobile-logo {
    max-height: 40px;
    border-radius: 8px;
}

.portal-mobile-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.portal-mobile-title {
    font-weight: 700;
    font-size: 0.95rem;
}

.portal-mobile-subtitle {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-gray);
}

.portal-mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.portal-mobile-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0.9rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(212, 175, 55, 0.3);
    font-size: 0.92rem;
    transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.portal-mobile-item--active a {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.16);
}

.portal-mobile-item a:hover {
    background: rgba(212, 175, 55, 0.16);
    border-color: var(--accent-gold);
    transform: translateY(-1px);
}

body.portal-nav-open {
    overflow: hidden;
}

/* Responsiveness for portal navbar */
@media (max-width: 960px) {
    .portal-nav {
        display: none;
    }

    .portal-menu-toggle {
        display: inline-flex;
    }

    #header.portal-header .header-right {
        justify-content: flex-end;
    }
}

@media (max-width: 640px) { 
    .portal-mobile-nav-inner { 
        margin-top: 76px; 
        max-width: 100%; 
        border-radius: 16px; 
    } 
 
    #header.portal-header .header-left { 
        margin-right: 0.75rem; 
    } 
}

/* =====================================================
   MODERN ROOSTER PAGE - TABS SYSTEM
   ===================================================== */

/* Hero Section with Quick Stats */
.rooster-hero {
    padding: 2rem 0 1.5rem;
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-dark) 100%);
}

.rooster-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.rooster-hero-text h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rooster-hero-text h1 i {
    color: var(--accent-gold);
}

.rooster-hero-text p {
    color: var(--text-gray);
    margin: 0;
    font-size: 1rem;
}

.rooster-quick-stats {
    display: flex;
    gap: 1rem;
}

.quick-stat {
    background: #fafafa;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 90px;
    transition: all 0.3s ease;
}

.quick-stat:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.quick-stat.highlight {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.05));
    border-color: rgba(76, 175, 80, 0.3);
}

.quick-stat.highlight .quick-stat-number {
    color: #4caf50;
}

.quick-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    display: block;
}

.quick-stat-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
    display: block;
}

/* Tabs Navigation */
.rooster-tabs-section {
    background: #ffffff;
    padding: 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.rooster-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.rooster-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.35rem;
    background: #fafafa;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    font-family: inherit;
}

.rooster-tab:hover {
    background: #f5f5f5;
    border-color: rgba(212, 175, 55, 0.25);
    color: var(--text-light);
    transform: translateY(-1px);
}

.rooster-tab.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.06));
    border-color: var(--accent-gold);
    color: var(--text-light);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
}

.rooster-tab.active i {
    color: var(--accent-gold);
}

.rooster-tab i {
    font-size: 1rem;
    transition: color 0.3s ease;
}

.tab-badge {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

/* Tab Content */
.tab-content {
    display: none;
    background: #ffffff;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Week Navigation - Modernized */
.week-nav-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.week-nav-center .current-week {
    font-size: 1.5rem;
    margin: 0;
}

.week-period {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.btn-today-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #F4D160 100%);
    border: none;
    border-radius: 20px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-today-pill:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-today-pill i {
    font-size: 0.75rem;
}

.week-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    color: var(--text-gray);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.week-btn:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.week-btn:active {
    transform: translateY(0);
}

/* Modern Schedule Grid */
.schedule-grid.modern {
    gap: 1rem;
}

/* Maandoverzicht Tab Content */
.maand-section {
    padding: 2rem 0 3rem;
    background: #ffffff;
}

.maand-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.maand-kalender-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    overflow: hidden;
}

.maand-kalender-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.maand-kalender-header h3 {
    margin: 0;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.maand-kalender-header h3 i {
    color: var(--accent-gold);
}

.maand-kalender-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    padding: 1.5rem;
}

.kalender-dag-header {
    text-align: center;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem;
    text-transform: uppercase;
}

.kalender-dag {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    cursor: default;
    transition: all 0.2s ease;
}

.kalender-dag.empty {
    background: transparent;
    border-color: transparent;
}

.kalender-dag.vandaag {
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.kalender-dag.heeft-dienst {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
    cursor: pointer;
}

.kalender-dag.heeft-dienst:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: scale(1.05);
}

.dag-nummer {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
}

.kalender-dag.vandaag .dag-nummer {
    color: var(--accent-gold);
    font-weight: 700;
}

.kalender-dag.heeft-dienst .dag-nummer {
    color: #4caf50;
    font-weight: 600;
}

.dag-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #4caf50;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stats Card */
.maand-stats-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
}

.maand-stats-card h3 {
    margin: 0 0 1.5rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.maand-stats-card h3 i {
    color: var(--accent-gold);
}

.stats-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.stat-row:hover {
    background: #f8f8f8;
}

.stat-row.mini {
    padding: 0.5rem 0.75rem;
}

.stat-row-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    color: var(--accent-gold);
    font-size: 1rem;
}

.stat-row.mini .stat-row-icon {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
}

.stat-row-icon.day {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.stat-row-icon.evening {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.stat-row-icon.night {
    background: rgba(33, 150, 243, 0.1);
    color: #2196f3;
}

.stat-row-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-row-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.stat-row.mini .stat-row-label {
    font-size: 0.85rem;
}

.stat-row-value {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 700;
}

.stat-row.mini .stat-row-value {
    font-size: 1rem;
}

.stat-row-divider {
    height: 1px;
    background: #ffffff;
    margin: 0.5rem 0;
}

/* Beschikbaar Tab Content */
.beschikbaar-section {
    padding: 2rem 0 3rem;
    background: #f5f5f5;
    min-height: 50vh;
}

.beschikbaar-section .container {
    background: #ffffff;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.beschikbaar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.beschikbaar-card {
    background: #ffffff;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.beschikbaar-card:hover {
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.beschikbaar-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}

.beschikbaar-datum {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f8f8;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    min-width: 70px;
}

.datum-dag {
    font-size: 1.75rem;
    font-weight: 800;
    color: #4caf50;
    line-height: 1;
}

.datum-maand {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.beschikbaar-dag-naam {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.beschikbaar-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.beschikbaar-tijd,
.beschikbaar-locatie,
.beschikbaar-adres,
.beschikbaar-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.beschikbaar-tijd i,
.beschikbaar-locatie i,
.beschikbaar-adres i,
.beschikbaar-info i {
    color: var(--accent-gold);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.beschikbaar-card-footer {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-claim {
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, #4caf50, #45a049);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-claim:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold), #F4D160);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.empty-state-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.empty-state h3 {
    color: #333333;
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.empty-state p {
    color: #666666;
    margin: 0;
    max-width: 400px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
    .rooster-hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .rooster-quick-stats {
        width: 100%;
        justify-content: space-between;
    }

    .quick-stat {
        flex: 1;
        min-width: auto;
    }

    .maand-layout {
        grid-template-columns: 1fr;
    }

    .maand-stats-card {
        order: -1;
    }
}

@media (max-width: 640px) {
    .rooster-hero {
        padding: 1.5rem 0 1rem;
    }

    .rooster-hero-text h1 {
        font-size: 1.5rem;
    }

    .quick-stat {
        padding: 0.75rem 1rem;
    }

    .quick-stat-number {
        font-size: 1.4rem;
    }

    .rooster-tabs-section {
        top: 60px;
    }

    .rooster-tab span {
        display: none;
    }

    .rooster-tab {
        padding: 0.75rem 1rem;
    }

    .beschikbaar-grid {
        grid-template-columns: 1fr;
    }

    .maand-kalender-grid {
        gap: 0.35rem;
        padding: 1rem;
    }

    .kalender-dag-header {
        font-size: 0.75rem;
    }

    .dag-nummer {
        font-size: 0.85rem;
    }

    .dag-badge {
        width: 14px;
        height: 14px;
        font-size: 0.55rem;
    }
}

/* =====================================================
   BESCHIKBAARHEID PAGE - MODERN DESIGN
   ===================================================== */

/* Alert Styles */
.alert-success {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #4caf50;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.alert-error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.4);
    color: #ff6b7a;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

/* Hero Section */
.beschikbaarheid-hero {
    padding: 2rem 0 1.5rem;
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-dark) 100%);
}

.beschikbaarheid-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.beschikbaarheid-hero-text h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.beschikbaarheid-hero-text h1 i {
    color: var(--accent-gold);
}

.beschikbaarheid-hero-text p {
    color: var(--text-gray);
    margin: 0;
}

.beschikbaarheid-quick-stats {
    display: flex;
    gap: 0.75rem;
}

.bqstat {
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
    transition: all 0.3s ease;
}

.bqstat.beschikbaar {
    background: rgba(33, 150, 243, 0.15);
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.bqstat.beschikbaar .bqstat-number {
    color: #2196f3;
}

.bqstat.niet {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.bqstat.niet .bqstat-number {
    color: #ff6b7a;
}

.bqstat.misschien {
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.bqstat.misschien .bqstat-number {
    color: #ffc107;
}

.bqstat-number {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.bqstat-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
    display: block;
}

/* Month Navigation */
.beschikbaarheid-nav-section {
    background: var(--bg-dark);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.beschikbaarheid-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.month-nav-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.month-nav-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.month-display {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.month-display h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.year-display {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Calendar Section */
.beschikbaarheid-calendar-section {
    padding: 2rem 0 3rem;
    background: var(--bg-dark);
}

.beschikbaarheid-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

.beschikbaarheid-calendar-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    overflow: hidden;
}

.calendar-header-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #fafafa;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cal-day-header {
    padding: 1rem 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.cal-day-header.weekend {
    color: rgba(255, 152, 0, 0.7);
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    padding: 1rem;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    gap: 0.25rem;
}

.cal-day:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: scale(1.05);
}

.cal-day.empty {
    background: transparent;
    pointer-events: none;
}

.cal-day.today {
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.cal-day.past {
    opacity: 0.5;
}

.cal-day.weekend {
    background: rgba(255, 152, 0, 0.05);
}

/* Status Colors */
.cal-day.status-ja {
    background: rgba(33, 150, 243, 0.15);
    border-color: rgba(33, 150, 243, 0.4);
}

.cal-day.status-ja .cal-day-status {
    color: #2196f3;
}

.cal-day.status-nee {
    background: rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.4);
}

.cal-day.status-nee .cal-day-status {
    color: #ff6b7a;
}

.cal-day.status-misschien {
    background: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.4);
}

.cal-day.status-misschien .cal-day-status {
    color: #ffc107;
}

.cal-day-number {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

.cal-day.past .cal-day-number {
    color: var(--text-gray);
}

.cal-day-status {
    font-size: 0.75rem;
}

/* Info Card */
.beschikbaarheid-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
}

.beschikbaarheid-info-card h3 {
    margin: 0 0 1.25rem 0;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.beschikbaarheid-info-card h3 i {
    color: var(--accent-gold);
}

.info-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.info-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-number {
    width: 28px;
    height: 28px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.info-step p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.legend-section {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legend-section h4 {
    margin: 0 0 0.75rem 0;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}

.legend-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
}

.legend-dot.beschikbaar {
    background: #2196f3;
}

.legend-dot.niet {
    background: #ff6b7a;
}

.legend-dot.misschien {
    background: #ffc107;
}

.legend-dot.onbekend {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legend-item span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Modern Modal */
.modern-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modern-modal.open {
    opacity: 1;
    visibility: visible;
}

.modern-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modern-modal-content {
    position: relative;
    background: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 20px;
    width: 90%;
    max-width: 440px;
    max-height: 90vh;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

.modern-modal.open .modern-modal-content {
    transform: translateY(0) scale(1);
}

.modern-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.modern-modal-header h2 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-modal-header h2 i {
    color: var(--accent-gold);
}

.modal-close-btn {
    width: 36px;
    height: 36px;
    background: #f8f8f8;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.4);
    color: #ff6b7a;
}

.modern-modal-body {
    padding: 1.5rem;
}

.modal-date-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.modal-date-display i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.modal-date-display span {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

/* Status Selector Cards */
.status-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.status-option {
    cursor: pointer;
}

.status-option input {
    display: none;
}

.status-card {
    padding: 1rem 0.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.2s ease;
    background: #ffffff;
}

.status-card i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.status-card span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-gray);
}

.status-card.beschikbaar {
    background: rgba(33, 150, 243, 0.05);
}

.status-card.beschikbaar i {
    color: #2196f3;
}

.status-option input:checked + .status-card.beschikbaar {
    background: rgba(33, 150, 243, 0.2);
    border-color: #2196f3;
}

.status-card.niet {
    background: rgba(220, 53, 69, 0.05);
}

.status-card.niet i {
    color: #ff6b7a;
}

.status-option input:checked + .status-card.niet {
    background: rgba(220, 53, 69, 0.2);
    border-color: #ff6b7a;
}

.status-card.misschien {
    background: rgba(255, 193, 7, 0.05);
}

.status-card.misschien i {
    color: #ffc107;
}

.status-option input:checked + .status-card.misschien {
    background: rgba(255, 193, 7, 0.2);
    border-color: #ffc107;
}

.modal-form-group {
    margin-bottom: 0;
}

.modal-form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.modal-form-group label i {
    color: var(--accent-gold);
}

.modal-form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #f8f8f8;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: inherit;
    resize: none;
    transition: all 0.2s ease;
}

.modal-form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #ffffff;
}

.modern-modal-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #fafafa;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.btn-cancel {
    flex: 1;
    padding: 0.85rem 1rem;
    background: #f8f8f8;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.btn-save {
    flex: 1;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, var(--accent-gold), #F4D160);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .beschikbaarheid-layout {
        grid-template-columns: 1fr;
    }

    .beschikbaarheid-info-card {
        order: -1;
    }
}

@media (max-width: 640px) {
    .beschikbaarheid-hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .beschikbaarheid-quick-stats {
        width: 100%;
        justify-content: space-between;
    }

    .bqstat {
        flex: 1;
        min-width: auto;
        padding: 0.6rem 0.75rem;
    }

    .bqstat-number {
        font-size: 1.25rem;
    }

    .beschikbaarheid-hero-text h1 {
        font-size: 1.5rem;
    }

    .beschikbaarheid-nav-section {
        top: 60px;
    }

    .month-display h2 {
        font-size: 1.25rem;
    }

    .calendar-days-grid {
        gap: 3px;
        padding: 0.75rem;
    }

    .cal-day {
        border-radius: 8px;
    }

    .cal-day-number {
        font-size: 0.85rem;
    }

    .cal-day-status {
        font-size: 0.65rem;
    }

    .status-selector {
        gap: 0.5rem;
    }

    .status-card {
        padding: 0.75rem 0.25rem;
    }

    .status-card i {
        font-size: 1.25rem;
    }

    .status-card span {
        font-size: 0.65rem;
    }
}

/* ==========================================
   BESCHIKBAARHEID - DIENST GEPLAND STYLING
   ========================================== */

/* Kalender dag met dienst gepland */
.cal-day.has-dienst {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(16, 185, 129, 0.15));
    border: 2px solid rgba(16, 185, 129, 0.6);
    position: relative;
}

.cal-day.has-dienst::before {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}

.cal-day.has-dienst:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.35), rgba(16, 185, 129, 0.25));
    border-color: rgba(16, 185, 129, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.cal-day.has-dienst .cal-day-number {
    color: #10b981;
    font-weight: 700;
}

.cal-day.has-dienst .cal-day-status {
    color: #10b981;
}

/* Quick stat gepland */
.bqstat.gepland {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border-color: rgba(16, 185, 129, 0.3);
}

.bqstat.gepland .bqstat-number {
    color: #10b981;
}

.bqstat.gepland .bqstat-label {
    color: rgba(16, 185, 129, 0.9);
}

/* Legend dot gepland */
.legend-dot.gepland {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

/* ==========================================
   DIENST INFO MODAL
   ========================================== */

#dienstModal .modern-modal-content {
    max-width: 450px;
}

.dienst-modal-header {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    padding: 1.5rem;
    border-radius: 16px 16px 0 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.dienst-modal-header h2 {
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    margin: 0;
}

.dienst-modal-header h2 i {
    font-size: 1.5rem;
}

.dienst-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #10b981;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.dienst-info-body {
    padding: 1.5rem;
}

.dienst-info-card {
    background: #fafafa;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.dienst-info-card:last-child {
    margin-bottom: 0;
}

.dienst-info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dienst-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dienst-info-row:first-child {
    padding-top: 0;
}

.dienst-info-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    color: #10b981;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.dienst-info-content {
    flex: 1;
}

.dienst-info-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.dienst-info-value {
    color: var(--text-light);
    font-weight: 500;
}

.dienst-modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    justify-content: center;
}

.btn-dienst-close {
    /* Grote, duidelijke "Begrepen" knop in modals */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    min-width: 160px;
    width: auto;
    height: auto;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 999px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-dienst-close i {
    font-size: 0.95rem;
}

.btn-dienst-close:hover {
    background: linear-gradient(135deg, var(--accent-gold), #F4D160);
    border-color: var(--accent-gold);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================
   ADMIN ALGEMEEN ROOSTER - MODERNE HERO
   ========================================== */

.admin-rooster-hero {
    padding: 2rem 0 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.admin-rooster-hero .alert {
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.admin-rooster-hero .alert-success {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.admin-rooster-hero .alert-error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b7a;
}

.admin-rooster-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.admin-rooster-hero-left h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-rooster-hero-left h1 i {
    color: var(--accent-gold);
}

.admin-rooster-hero-left p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.admin-rooster-hero-stats {
    display: flex;
    gap: 1rem;
}

.hero-stat-box {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 90px;
}

.hero-stat-box .stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.1;
}

.hero-stat-box .stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* Admin Rooster Controls Bar */
.admin-rooster-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(248, 248, 248, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.08);
}

.controls-left,
.controls-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.control-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    background: #f8f8f8;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.control-btn:hover {
    background: #f5f5f5;
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    transform: translateY(-1px);
}

.control-btn.today-btn {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.control-btn.today-btn:hover {
    background: var(--accent-gold);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.control-btn.primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #F4D160 100%);
    border-color: transparent;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.2);
}

.control-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.control-btn i {
    font-size: 0.9rem;
}

.filter-form {
    display: flex;
    align-items: center;
}

.filter-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-select-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
    pointer-events: none;
}

.filter-select-wrapper select {
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    background: #f8f8f8;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.875rem;
    font-family: inherit;
    cursor: pointer;
    min-width: 180px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.filter-select-wrapper select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* Responsive Admin Rooster Hero */
@media (max-width: 900px) {
    .admin-rooster-hero-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-rooster-hero-stats {
        width: 100%;
        justify-content: flex-start;
    }
    
    .admin-rooster-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .controls-left,
    .controls-right {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .admin-rooster-hero-left h1 {
        font-size: 1.4rem;
    }
    
    .hero-stat-box {
        padding: 0.75rem 1rem;
        min-width: 70px;
    }
    
    .hero-stat-box .stat-number {
        font-size: 1.4rem;
    }
    
    .control-btn span {
        display: none;
    }
}

/* ==========================================
   ROOSTER - MODERNE DIENST INFO MODAL
   ========================================== */

.rooster-dienst-modal {
    max-width: 480px;
}

.rooster-dienst-modal-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: 16px 16px 0 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.rooster-dienst-header-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold), #F4D160);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.rooster-dienst-header-icon.day {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.rooster-dienst-header-icon.evening {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.rooster-dienst-header-icon.night {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.rooster-dienst-header-text {
    flex: 1;
}

.rooster-dienst-header-text h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 600;
}

.rooster-dienst-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.rooster-dienst-date-badge i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.rooster-dienst-modal-body {
    padding: 1.5rem;
    /* Maak inhoud scrollbaar zodat meerdere diensten netjes zichtbaar zijn */
    max-height: calc(80vh - 200px);
    overflow-y: auto;
}

.rooster-dienst-info-card {
    background: #ffffff;
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    overflow: hidden;
}

.rooster-dienst-info-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: background 0.2s ease;
}

.rooster-dienst-info-row:last-child {
    border-bottom: none;
}

.rooster-dienst-info-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.rooster-dienst-info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 10px;
    color: var(--accent-gold);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.rooster-dienst-info-content {
    flex: 1;
    min-width: 0;
}

.rooster-dienst-info-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.rooster-dienst-info-value {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
}

.rooster-dienst-opmerkingen {
    margin-top: 1rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.rooster-dienst-opmerkingen-header {
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rooster-dienst-opmerkingen p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.rooster-dienst-modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    justify-content: center;
}

/* Meer info button styling */
.btn-more-info {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-more-info:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-1px);
}

.btn-more-info i {
    font-size: 0.85rem;
}

/* Klikbare adres row voor Google Maps */
a.rooster-dienst-info-row.clickable-row {
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

a.rooster-dienst-info-row.clickable-row:hover {
    background: rgba(66, 133, 244, 0.1);
}

a.rooster-dienst-info-row.clickable-row:hover .rooster-dienst-info-icon.maps-icon {
    background: rgba(66, 133, 244, 0.25);
    color: #4285f4;
}

a.rooster-dienst-info-row.clickable-row:hover .rooster-dienst-arrow {
    color: #4285f4;
    transform: translateX(3px);
}

.rooster-dienst-info-icon.maps-icon {
    background: rgba(66, 133, 244, 0.15);
    color: #4285f4;
    transition: all 0.2s ease;
}

.maps-hint {
    font-size: 0.65rem;
    color: #4285f4;
    margin-left: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

a.rooster-dienst-info-row.clickable-row:hover .maps-hint {
    opacity: 1;
}

.rooster-dienst-arrow {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all 0.2s ease;
    padding-left: 0.5rem;
}

/* Beschikbaarheid modal - klikbare adres row */
a.dienst-info-row.clickable-row {
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 0 -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

a.dienst-info-row.clickable-row:hover {
    background: rgba(66, 133, 244, 0.1);
}

a.dienst-info-row.clickable-row .dienst-info-icon.maps-icon {
    background: rgba(66, 133, 244, 0.15);
    color: #4285f4;
}

a.dienst-info-row.clickable-row:hover .dienst-info-icon.maps-icon {
    background: rgba(66, 133, 244, 0.25);
}

a.dienst-info-row.clickable-row:hover .dienst-arrow {
    color: #4285f4;
    transform: translateX(3px);
}

.dienst-arrow {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

/* ==========================================
   MODERN DASHBOARD - BENTO LAYOUT
   ========================================== */

/* Dashboard Hero */
.dash-hero {
    background: #ffffff;
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 0;
}

.dash-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.dash-greeting {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.greeting-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold), #F4D160);
    border-radius: 16px;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.greeting-text .greeting-time {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.greeting-text h1 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
}

.dash-hero-stats {
    display: flex;
    gap: 1rem;
}

.hero-stat {
    text-align: center;
    padding: 0.75rem 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    min-width: 80px;
}

.hero-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.hero-stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* Quick Actions Bar */
.quick-actions-bar {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 70px;
    z-index: 90;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.quick-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    color: #333333;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.quick-action:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.quick-action i {
    font-size: 1rem;
}

.action-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Bento Grid */
.dash-bento {
    padding: 2rem 0;
    background: var(--bg-dark);
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.25rem;
}

.bento-card {
    background: #ffffff;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.bento-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
}

.bento-large {
    grid-row: span 2;
}

.bento-medium {
    /* Default sizing */
}

.bento-wide {
    grid-column: span 2;
}

.bento-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.bento-card-header h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bento-card-header h3 i {
    color: var(--accent-gold);
}

.bento-link {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s ease;
}

.bento-link:hover {
    color: var(--accent-gold);
}

.bento-badge {
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

/* Volgende Dienst Card */
.volgende-dienst-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    border: 2px solid rgba(212, 175, 55, 0.4) !important;
}

.volgende-dienst-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #B8960C, var(--accent-gold), #F4D160);
}

.volgende-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.volgende-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.volgende-dag {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    color: #333333;
}

.volgende-dag.is-vandaag {
    background: linear-gradient(135deg, var(--accent-gold), #F4D160);
    border: none;
    color: #ffffff;
    font-weight: 700;
}

.volgende-content {
    flex: 1;
}

.volgende-type {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.volgende-type i {
    font-size: 1.25rem;
}

.volgende-type.type-dag i { color: #fbbf24; }
.volgende-type.type-avond i { color: #f97316; }
.volgende-type.type-nacht i { color: #818cf8; }

.volgende-tijd,
.volgende-locatie {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.volgende-tijd i,
.volgende-locatie i,
.volgende-adres i {
    color: var(--accent-gold);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.volgende-adres {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 0.5rem;
}

.volgende-adres i {
    margin-top: 0.15rem;
}

.volgende-adres-tekst {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.volgende-adres-tekst span {
    line-height: 1.4;
}

.volgende-maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--accent-gold), #F4D160);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.volgende-maps-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.volgende-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
}

.volgende-empty i {
    font-size: 4rem;
    color: var(--accent-gold);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.volgende-empty h3 {
    margin: 0 0 0.5rem;
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 600;
}

.volgende-empty p {
    margin: 0;
    font-size: 0.9rem;
    max-width: 250px;
}

/* Mini Kalender */
.kalender-card {
    display: flex;
    flex-direction: column;
}

.mini-kalender {
    flex: 1;
}

.mini-kalender-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 0.5rem;
}

.mini-kalender-header span {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-gold);
    padding: 0.25rem;
}

.mini-kalender-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.mini-kalender-days span {
    text-align: center;
    padding: 0.4rem 0.2rem;
    font-size: 0.75rem;
    color: #333333;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.mini-kalender-days span.empty {
    visibility: hidden;
}

.mini-kalender-days span.today {
    background: var(--accent-gold);
    color: #ffffff;
    font-weight: 700;
    border: 2px solid #8B7500;
}

.mini-kalender-days span.has-dienst {
    background: rgba(212, 175, 55, 0.2);
    color: #8B7500;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid var(--accent-gold);
}

.mini-kalender-days span.has-dienst:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: scale(1.1);
    border-color: var(--accent-gold);
}

.mini-kalender-days span.today.has-dienst {
    background: linear-gradient(135deg, var(--accent-gold), #F4D160);
    color: #ffffff;
    border: none;
}

/* Berichten Card */
.berichten-card {
    display: flex;
    flex-direction: column;
}

.berichten-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.berichten-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    gap: 0.5rem;
}

.berichten-empty i {
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.5;
}

.berichten-empty p {
    margin: 0;
    font-size: 0.85rem;
}

.bericht-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-left: 4px solid var(--accent-gold);
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bericht-item:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
}

.bericht-item-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.bericht-item-content {
    flex: 1;
    min-width: 0;
}

.bericht-item-content h4 {
    margin: 0 0 0.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bericht-item-content p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bericht-item-action {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.bericht-item-action:hover {
    background: var(--accent-gold);
    color: #ffffff;
}

/* Diensten List Card */
.diensten-list-card {
    display: flex;
    flex-direction: column;
}

.diensten-scroll {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.diensten-empty {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.dienst-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-left: 4px solid var(--accent-gold);
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dienst-list-item:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.5);
}

.dienst-list-item.next {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.dienst-list-date {
    text-align: center;
    min-width: 45px;
}

.dienst-list-date .date-day {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.dienst-list-date .date-month {
    display: block;
    font-size: 0.65rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 0.2rem;
}

.dienst-list-info {
    flex: 1;
    min-width: 0;
}

.dienst-list-type {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.dienst-list-time {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.dienst-list-time i {
    color: var(--accent-gold);
    margin-right: 0.25rem;
}

.dienst-list-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dienst-list-location i {
    color: var(--accent-gold);
}

/* Responsive Dashboard */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large,
    .bento-medium,
    .bento-wide {
        grid-column: span 1;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .dash-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .dash-hero-stats {
        width: 100%;
        justify-content: space-between;
    }
    
    .hero-stat {
        flex: 1;
        padding: 0.6rem 0.75rem;
    }
    
    .hero-stat-value {
        font-size: 1.25rem;
    }
    
    .greeting-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .greeting-text h1 {
        font-size: 1.4rem;
    }
    
    .quick-actions-bar {
        top: 60px;
    }
    
    .quick-actions {
        gap: 0.4rem;
    }
    
    .quick-action {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .quick-action span {
        display: none;
    }
    
    .quick-action i {
        font-size: 1.1rem;
    }
    
    .volgende-dienst-card {
        min-height: auto;
    }
    
    .volgende-type {
        font-size: 1.25rem;
    }
}

/* ==========================================
   ADMIN ROOSTER - PLANNER SECTION
   ========================================== */

.planner-section {
    padding: 2rem 0;
    background: #ffffff;
}

.planner-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
}

.planner-medewerker-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
}

.planner-medewerker-badge i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.planner-medewerker-badge span {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.planner-month-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.month-nav-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
}

.month-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: scale(1.05);
}

.month-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    min-width: 140px;
    text-align: center;
}

.planner-medewerker-select select {
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    background: #f8f8f8;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
    min-width: 200px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c0c0c0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    transition: all 0.2s ease;
}

.planner-medewerker-select select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.planner-medewerker-select select:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.planner-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

/* Responsive Planner Header */
@media (max-width: 900px) {
    .planner-header-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .planner-medewerker-badge {
        justify-content: center;
    }
    
    .planner-month-display {
        justify-content: center;
    }
    
    .planner-medewerker-select {
        width: 100%;
    }
    
    .planner-medewerker-select select {
        width: 100%;
    }
    
    .planner-grid-layout {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   ROOSTER BEHEER - MODERN COMPONENTS
   ========================================== */

.rooster-beheer-section {
    padding: 2rem 0;
    background: #ffffff;
}

.rooster-beheer-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.rooster-beheer-card-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.rooster-beheer-card-header h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rooster-beheer-card-header h2 i {
    color: var(--accent-gold);
}

.rooster-beheer-card-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.rooster-beheer-card-body {
    padding: 1.5rem;
}

.form-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

/* Diensten Grid */
.diensten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
}

.dienst-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dienst-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.dienst-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.dienst-date {
    text-align: center;
    min-width: 50px;
}

.dienst-date .date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.dienst-date .date-month {
    display: block;
    font-size: 0.7rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 0.2rem;
    letter-spacing: 0.5px;
}

.dienst-type-badge {
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dienst-type-badge.dagdienst {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.dienst-type-badge.avonddienst {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.dienst-type-badge.nachtdienst {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
}

.dienst-type-badge.evenement {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.dienst-card-body {
    padding: 1.25rem;
}

.dienst-info-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.dienst-info-row i {
    color: var(--accent-gold);
    width: 18px;
    text-align: center;
}

.dienst-status {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-badge.accepted {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.status-badge.pending {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.dienst-card-actions {
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.dienst-quick-form {
    flex: 1;
}

.dienst-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: #f8f8f8;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
}

.dienst-select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.dienst-action-buttons {
    display: flex;
    gap: 0.5rem;
}

/* action-btn styles are defined in UNIFIED BUTTON SYSTEM above */

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    border: 1px dashed rgba(212, 175, 55, 0.2);
    border-radius: 16px;
}

.empty-state i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.empty-state h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-light);
    font-size: 1.25rem;
}

.empty-state p {
    margin: 0 0 1.5rem 0;
    color: var(--text-muted);
}

.empty-state.small {
    padding: 2rem;
}

.empty-state.small i {
    font-size: 2rem;
}

.empty-state.small p {
    margin-bottom: 0;
}

/* Beschikbaarheid List */
.beschikbaarheid-filter {
    margin-bottom: 1.5rem;
}

.filter-row {
    display: flex;
    gap: 1rem;
}

.beschikbaarheid-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.beschikbaarheid-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.beschikbaarheid-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.beschikbaarheid-item.ja {
    border-left: 3px solid #10b981;
}

.beschikbaarheid-item.nee {
    border-left: 3px solid #ef4444;
}

.beschikbaarheid-item.misschien {
    border-left: 3px solid #f59e0b;
}

.beschikbaarheid-date {
    text-align: center;
    min-width: 50px;
}

.beschikbaarheid-date .b-day {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.beschikbaarheid-date .b-month {
    display: block;
    font-size: 0.65rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 0.15rem;
}

.beschikbaarheid-info {
    flex: 1;
}

.beschikbaarheid-info .b-status {
    display: block;
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.95rem;
}

.beschikbaarheid-info .b-status i {
    margin-right: 0.5rem;
}

.beschikbaarheid-item.ja .b-status i {
    color: #10b981;
}

.beschikbaarheid-item.nee .b-status i {
    color: #ef4444;
}

.beschikbaarheid-item.misschien .b-status i {
    color: #f59e0b;
}

.beschikbaarheid-info .b-reden {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Secondary Button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f8f8f8;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Small Modal */
.small-modal {
    max-width: 400px;
}

/* Responsive Rooster Beheer */
@media (max-width: 768px) {
    .diensten-grid {
        grid-template-columns: 1fr;
    }
    
    .dienst-card-actions {
        flex-direction: column;
    }
    
    .dienst-quick-form {
        width: 100%;
    }
    
    .dienst-action-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}

/* ==========================================
   MODERN DIENST FORM
   ========================================== */

.dienst-form-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 1.5rem;
    align-items: start;
}

.dienst-form-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.dienst-form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.form-header-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold), #F4D160);
    border-radius: 14px;
    color: #ffffff;
    font-size: 1.25rem;
}

.form-header-text h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
}

.form-header-text p {
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.dienst-form-modern {
    padding: 1.5rem;
}

.form-section {
    margin-bottom: 1.5rem;
}

.form-section:last-of-type {
    margin-bottom: 0;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
}

.section-number {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold), #F4D160);
    border-radius: 50%;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
}

.optional-badge {
    margin-left: auto;
    padding: 0.2rem 0.6rem;
    background: #f8f8f8;
    border-radius: 10px;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-section-content {
    padding-left: 2.5rem;
}

.modern-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.modern-select-wrapper > i {
    position: absolute;
    left: 1rem;
    color: var(--accent-gold);
    font-size: 0.95rem;
    pointer-events: none;
    z-index: 1;
}

.modern-select {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    background: #fafafa;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c0c0c0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    transition: all 0.2s ease;
}

.modern-select:hover {
    border-color: rgba(212, 175, 55, 0.25);
    background-color: rgba(255, 255, 255, 0.05);
}

.modern-select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.modern-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modern-input-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
    pointer-events: none;
}

.input-with-icon input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    background: #fafafa;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.input-with-icon input:hover {
    border-color: rgba(212, 175, 55, 0.25);
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Dienst Type Selector */
.dienst-type-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.type-option {
    cursor: pointer;
}

.type-option input {
    display: none;
}

.type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.type-card i {
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.type-card span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.type-option:hover .type-card {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.type-option input:checked + .type-card {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.08);
}

.type-option input:checked + .type-card i,
.type-option input:checked + .type-card span {
    color: var(--text-light);
}

.type-card.dagdienst i { color: #fbbf24; }
.type-option input:checked + .type-card.dagdienst { border-color: #fbbf24; }
.type-option input:checked + .type-card.dagdienst i { color: #fbbf24; }

.type-card.avonddienst i { color: #f97316; }
.type-option input:checked + .type-card.avonddienst { border-color: #f97316; }
.type-option input:checked + .type-card.avonddienst i { color: #f97316; }

.type-card.nachtdienst i { color: #818cf8; }
.type-option input:checked + .type-card.nachtdienst { border-color: #818cf8; }
.type-option input:checked + .type-card.nachtdienst i { color: #818cf8; }

.type-card.evenement i { color: #10b981; }
.type-option input:checked + .type-card.evenement { border-color: #10b981; }
.type-option input:checked + .type-card.evenement i { color: #10b981; }

/* Modern Textarea */
.modern-textarea-group textarea {
    width: 100%;
    padding: 1rem;
    background: #fafafa;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: all 0.2s ease;
}

.modern-textarea-group textarea::placeholder {
    color: var(--text-muted);
}

.modern-textarea-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Submit Section */
.form-submit-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.btn-submit-dienst {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-gold), #F4D160);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-dienst:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-submit-dienst i {
    font-size: 1.1rem;
}

/* Preview Card */
.dienst-preview-card {
    position: sticky;
    top: 140px;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #fafafa;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.preview-header i {
    color: var(--accent-gold);
}

.preview-content {
    padding: 1.25rem;
}

.preview-dienst-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 14px;
}

.preview-date {
    text-align: center;
    min-width: 55px;
}

.preview-date .p-day {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.preview-date .p-month {
    display: block;
    font-size: 0.7rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 0.25rem;
    letter-spacing: 0.5px;
}

.preview-info {
    flex: 1;
    min-width: 0;
}

.preview-type {
    margin-bottom: 0.75rem;
}

.preview-type .type-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.preview-type .type-badge.dagdienst {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.preview-type .type-badge.avonddienst {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.preview-type .type-badge.nachtdienst {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
}

.preview-type .type-badge.evenement {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.preview-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.preview-row i {
    color: var(--accent-gold);
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
}

.preview-tips {
    padding: 1.25rem;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.preview-tips h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.preview-tips h4 i {
    color: #fbbf24;
}

.preview-tips ul {
    margin: 0;
    padding-left: 1.25rem;
}

.preview-tips li {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.25rem 0;
}

/* Responsive Modern Form */
@media (max-width: 1024px) {
    .dienst-form-layout {
        grid-template-columns: 1fr;
    }
    
    .dienst-preview-card {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .form-row-3 {
        grid-template-columns: 1fr;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    
    .dienst-type-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-section-content {
        padding-left: 0;
    }
}

/* ==========================================
   LOCATIES BEHEER
   ========================================== */

.locaties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.25rem;
}

.locatie-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.locatie-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.locatie-card.inactive {
    opacity: 0.6;
}

.locatie-card.inactive:hover {
    opacity: 0.8;
}

.locatie-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.locatie-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold), #F4D160);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pill.active {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.status-pill.inactive {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.locatie-card-body {
    padding: 1.25rem;
}

.locatie-naam {
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.locatie-adres {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.adres-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.adres-row i {
    color: var(--accent-gold);
    width: 16px;
    text-align: center;
    font-size: 0.85rem;
}

.locatie-card-actions {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.action-btn.maps {
    flex: 1;
}

.action-btn.maps:hover {
    color: #3b82f6;
    border-color: #3b82f6;
}

.action-btn.pause:hover {
    color: #f59e0b;
    border-color: #f59e0b;
}

.action-btn.play:hover {
    color: #10b981;
    border-color: #10b981;
}

/* Locatie Form Layout */
.locatie-form-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 1.5rem;
    align-items: start;
}

/* Locatie Preview */
.locatie-preview {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 14px;
}

.locatie-preview-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold), #F4D160);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.locatie-preview-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.locatie-preview-info p {
    margin: 0.25rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive Locaties */
@media (max-width: 1024px) {
    .locatie-form-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .locaties-grid {
        grid-template-columns: 1fr;
    }
    
    .locatie-card-actions {
        flex-wrap: wrap;
    }
    
    .action-btn.maps {
        flex: auto;
    }
}

/* ============================================
   ADMIN BERICHTEN STYLES
   ============================================ */

/* Berichten Grid */
.berichten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.5rem;
}

/* Bericht Card */
.bericht-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.bericht-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.bericht-card.inactive {
    opacity: 0.6;
}

.bericht-card.inactive:hover {
    opacity: 0.8;
}

.bericht-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 1.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.bericht-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.bericht-auteur,
.bericht-datum {
    font-size: 0.8rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.bericht-auteur i,
.bericht-datum i {
    width: 14px;
    font-size: 0.7rem;
    color: var(--accent-gold);
}

.bericht-card-body {
    padding: 1.25rem;
}

.bericht-titel {
    margin: 0 0 0.75rem 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.4;
}

.bericht-tekst {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-height: 120px;
    overflow-y: auto;
}

.bericht-card-actions {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: #fafafa;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* Bericht Form Layout */
.bericht-form-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 1.5rem;
    align-items: start;
}

/* Bericht Preview */
.bericht-preview {
    padding: 1.25rem;
    background: #fafafa;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 14px;
}

.bericht-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, var(--accent-gold), #F4D160);
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.preview-time {
    font-size: 0.75rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.bericht-preview h4 {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.bericht-preview p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Modern Textarea */
.modern-textarea-group textarea {
    width: 100%;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-family: inherit;
    line-height: 1.6;
    resize: vertical;
    transition: all 0.3s ease;
}

.modern-textarea-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.modern-textarea-group textarea::placeholder {
    color: #999;
}

/* Responsive Berichten */
@media (max-width: 1024px) {
    .bericht-form-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .berichten-grid {
        grid-template-columns: 1fr;
    }
    
    .bericht-card-header {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .bericht-card-actions {
        flex-wrap: wrap;
    }
}

/* ============================================
   ADMIN GEBRUIKERS STYLES
   ============================================ */

/* Filter Bar */
.gebruikers-filter-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-box {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-box input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.25rem;
    background: #fafafa;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #f5f5f5;
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    transform: translateY(-1px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #F4D160 100%);
    color: #ffffff;
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.filter-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.filter-btn i {
    font-size: 0.9rem;
}

/* Gebruikers Grid */
.gebruikers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.5rem;
}

/* Gebruiker Card */
.gebruiker-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.gebruiker-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.12);
}

.gebruiker-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.gebruiker-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold), #F4D160);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.gebruiker-info {
    flex: 1;
    min-width: 0;
}

.gebruiker-info h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gebruiker-username {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.gebruiker-badges {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-end;
}

.user-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
}

.user-badge.admin {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}

.user-badge.zzp {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.user-badge.loondienst {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.user-badge.reset {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.gebruiker-card-body {
    padding: 1.25rem;
}

.gebruiker-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.detail-item i {
    width: 16px;
    font-size: 0.75rem;
    color: var(--accent-gold);
}

.uurtarieven-preview {
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.uurtarieven-preview h4 {
    margin: 0 0 0.75rem 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tarief-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.tarief-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.5rem;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--text-light);
}

.tarief-badge i {
    font-size: 0.7rem;
}

.tarief-badge.dag i { color: #fbbf24; }
.tarief-badge.avond i { color: #f97316; }
.tarief-badge.nacht i { color: #8b5cf6; }
.tarief-badge.weekend i { color: #60a5fa; }

.inhoudingen-info {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.inhoudingen-info span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.gebruiker-card-actions {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.action-btn.invoice:hover {
    color: #60a5fa;
    border-color: #60a5fa;
}

.action-btn.reset:hover {
    color: #fbbf24;
    border-color: #fbbf24;
}

/* Gebruiker Form Layout */
.gebruiker-form-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 1.5rem;
    align-items: start;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.input-hint {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Dienstverband Selector */
.dienstverband-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.dienstverband-option {
    cursor: pointer;
}

.dienstverband-option input {
    display: none;
}

.dienstverband-option .option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    background: #fafafa;
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.dienstverband-option:hover .option-content {
    border-color: rgba(212, 175, 55, 0.3);
}

.dienstverband-option.selected .option-content {
    background: rgba(192, 168, 0, 0.1);
    border-color: var(--accent-gold);
}

.dienstverband-option .option-content i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.dienstverband-option.selected .option-content i {
    color: var(--accent-gold);
}

.dienstverband-option .option-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.dienstverband-option .option-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.conditional-fields {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* Uurtarieven Grid */
.uurtarieven-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

@media (max-width: 600px) {
    .uurtarieven-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tarief-input-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 0.5rem;
    background: #fafafa;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 0;
}

.tarief-input-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.tarief-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
}

.tarief-input-card.dag .tarief-icon {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.tarief-input-card.avond .tarief-icon {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.tarief-input-card.nacht .tarief-icon {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.tarief-input-card.weekend .tarief-icon {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
}

.tarief-input-card label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.tarief-input-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 6px;
    overflow: hidden;
}

.tarief-input-wrapper .currency {
    padding: 0.4rem 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.tarief-input-wrapper input {
    flex: 1;
    min-width: 0;
    width: 100%;
    padding: 0.4rem 0.5rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 0.85rem;
    text-align: right;
}

.tarief-input-wrapper input:focus {
    outline: none;
}

.tarief-input-wrapper input::placeholder {
    color: #bbb;
}

.tarief-input-wrapper:focus-within {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

/* Tarief Opslag Bar */
.tarief-opslag-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(192, 168, 0, 0.1);
    border: 1px solid rgba(192, 168, 0, 0.2);
    border-radius: 10px;
}

.opslag-label {
    font-size: 0.85rem;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.opslag-input-group {
    display: flex;
    gap: 0.5rem;
    flex: 1;
}

.opslag-input {
    width: 80px;
    padding: 0.5rem;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
}

.opslag-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.btn-opslag {
    padding: 0.5rem 1rem;
    background: var(--accent-gold);
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.btn-opslag:hover {
    transform: scale(1.02);
}

/* Gebruiker Preview */
.gebruiker-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.preview-avatar {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold), #F4D160);
    border-radius: 16px;
    margin-bottom: 1rem;
}

.preview-avatar span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.gebruiker-preview h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.preview-email {
    margin: 0 0 1rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.preview-badge-container {
    margin-bottom: 1rem;
}

.preview-dienstverband {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.preview-dienstverband.loondienst {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.preview-dienstverband.zzp {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.preview-tarieven {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    width: 100%;
}

.preview-tarief {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.preview-tarief i {
    font-size: 0.7rem;
}

/* Responsive Gebruikers */
@media (max-width: 1200px) {
    .uurtarieven-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .gebruiker-form-layout {
        grid-template-columns: 1fr;
    }
    
    .dienstverband-selector {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gebruikers-grid {
        grid-template-columns: 1fr;
    }
    
    .gebruiker-card-header {
        flex-wrap: wrap;
    }
    
    .gebruiker-badges {
        flex-direction: row;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .tarief-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .uurtarieven-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tarief-opslag-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .opslag-input-group {
        flex-direction: column;
    }
    
    .gebruiker-card-actions {
        flex-wrap: wrap;
    }

    .filter-buttons {
        width: 100%;
    }
}

/* ============================================
   BESCHIKBAARHEID KALENDER STYLES
   ============================================ */

/* Controls Bar */
.beschikbaarheid-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.maand-navigatie {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.maand-nav-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.maand-nav-btn:hover {
    background: rgba(192, 168, 0, 0.2);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.maand-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    min-width: 150px;
    text-align: center;
}

/* Legenda */
.beschikbaarheid-legenda {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.legenda-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legenda-color {
    width: 14px;
    height: 14px;
    border-radius: 4px;
}

.legenda-item.dienst .legenda-color {
    background: #10b981;
}

.legenda-item.beschikbaar .legenda-color {
    background: #3b82f6;
}

.legenda-item.niet-beschikbaar .legenda-color {
    background: #ef4444;
}

.legenda-item.misschien .legenda-color {
    background: #f59e0b;
}

.legenda-item.geen .legenda-color {
    background: #6b7280;
}

/* Beschikbaarheid List */
.beschikbaarheid-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.beschikbaarheid-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.beschikbaarheid-item:hover {
    transform: translateX(4px);
    border-color: rgba(212, 175, 55, 0.3);
}

.beschikbaarheid-item.vandaag {
    border-color: var(--accent-gold);
    background: rgba(192, 168, 0, 0.05);
}

/* Status Colors */
.beschikbaarheid-item.dienst {
    border-left: 4px solid #10b981;
}

.beschikbaarheid-item.beschikbaar {
    border-left: 4px solid #3b82f6;
}

.beschikbaarheid-item.niet-beschikbaar {
    border-left: 4px solid #ef4444;
}

.beschikbaarheid-item.misschien {
    border-left: 4px solid #f59e0b;
}

.beschikbaarheid-item.geen {
    border-left: 4px solid #6b7280;
    opacity: 0.6;
}

.beschikbaarheid-item.geen:hover {
    opacity: 0.8;
}

.beschikbaarheid-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.beschikbaarheid-date .b-day {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.beschikbaarheid-item.vandaag .beschikbaarheid-date .b-day {
    color: var(--accent-gold);
}

.beschikbaarheid-date .b-month {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.beschikbaarheid-dag-naam {
    min-width: 90px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.beschikbaarheid-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.beschikbaarheid-info .b-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 160px;
}

.beschikbaarheid-item.dienst .b-status {
    color: #34d399;
}

.beschikbaarheid-item.beschikbaar .b-status {
    color: #60a5fa;
}

.beschikbaarheid-item.niet-beschikbaar .b-status {
    color: #f87171;
}

.beschikbaarheid-item.misschien .b-status {
    color: #fbbf24;
}

.beschikbaarheid-item.geen .b-status {
    color: #9ca3af;
}

.beschikbaarheid-info .b-reden {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive Beschikbaarheid */
@media (max-width: 768px) {
    .beschikbaarheid-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .maand-navigatie {
        justify-content: center;
    }
    
    .beschikbaarheid-legenda {
        justify-content: center;
    }
    
    .beschikbaarheid-item {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .beschikbaarheid-dag-naam {
        min-width: auto;
    }
    
    .beschikbaarheid-info {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .beschikbaarheid-info .b-status {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .beschikbaarheid-legenda {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* =============================================
   MODERN WEEK OVERVIEW - Weekoverzicht Rooster
   ============================================= */

.week-overview-modern {
    padding: 2rem 0 4rem;
    background: var(--bg-section);
}

/* Week Control Bar */
.week-control-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.week-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.week-nav-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.week-nav-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: scale(1.05);
}

.week-info {
    text-align: center;
}

.week-info .week-label {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
}

.week-info .week-dates {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.15rem;
}

.week-today-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-gold), #D4AF37);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-left: 0.5rem;
}

.week-today-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Week Filter */
.week-filter {
    display: flex;
    align-items: center;
}

.week-filter-select {
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    background: #f8f8f8;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c0c0c0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    transition: all 0.2s ease;
}

.week-filter-select:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.week-filter-select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.week-filter-select option {
    background: #ffffff;
    color: #333333;
}

/* Week Grid */
.week-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem;
}

/* Week Day Card */
.week-day {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.week-day:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.week-day.is-weekend {
    background: linear-gradient(135deg, #fffdf5, #fff9e6);
}

.week-day.is-today {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.2);
}

/* Day Header */
.week-day-header {
    padding: 0.75rem;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.week-day-header .day-top {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.week-day-header .day-name-short {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.week-day-header .day-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
}

.week-day.is-today .day-number {
    color: var(--accent-gold);
}

.today-indicator {
    display: inline-block;
    margin-top: 0.35rem;
    padding: 0.15rem 0.5rem;
    background: linear-gradient(135deg, var(--accent-gold), #D4AF37);
    color: var(--primary-dark);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.shift-counter {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
}

/* Day Content */
.week-day-content {
    flex: 1;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 180px;
    max-height: 350px;
    overflow-y: auto;
}

.week-day-content::-webkit-scrollbar {
    width: 4px;
}

.week-day-content::-webkit-scrollbar-track {
    background: transparent;
}

.week-day-content::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.2);
    border-radius: 2px;
}

/* No Shifts State */
.no-shifts {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    opacity: 0.5;
    padding: 2rem 0;
}

.no-shifts i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.no-shifts span {
    font-size: 0.85rem;
}

/* =============================================
   WK-SHIFT - Week Grid Shift Items (unique prefix)
   ============================================= */

.wk-shift {
    position: relative;
    background: #fafafa;
    border-radius: 10px;
    padding: 0.75rem;
    border-left: 4px solid #4CAF50;
    margin-bottom: 0;
}

.wk-shift:hover {
    background: #f5f5f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Type Colors */
.wk-shift.wk-type-day {
    border-left-color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.wk-shift.wk-type-evening {
    border-left-color: #FF9800;
    background: rgba(255, 152, 0, 0.1);
}

.wk-shift.wk-type-night {
    border-left-color: #2196F3;
    background: rgba(33, 150, 243, 0.1);
}

.wk-shift.wk-type-event {
    border-left-color: #9C27B0;
    background: rgba(156, 39, 176, 0.1);
}

/* Delete Button */
.wk-shift-delete {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b7a;
    border-radius: 5px;
    font-size: 0.65rem;
    opacity: 0;
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.wk-shift:hover .wk-shift-delete {
    opacity: 1;
}

.wk-shift-delete:hover {
    background: rgba(220, 53, 69, 0.5);
    color: #fff;
}

/* Top Row: Avatar + Info */
.wk-shift-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.wk-avatar {
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold), #D4AF37);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
}

.wk-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.wk-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.wk-status {
    display: block;
    font-size: 0.7rem;
    line-height: 1.3;
}

.wk-status.is-confirmed {
    color: #4CAF50;
}

.wk-status.is-pending {
    color: #fbbf24;
}

/* Details Section */
.wk-shift-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wk-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.wk-time i {
    font-size: 0.7rem;
    opacity: 0.8;
}

.wk-type {
    font-size: 0.75rem;
    color: #555555;
    font-weight: 500;
}

.wk-loc {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #777777;
}

.wk-loc i {
    font-size: 0.6rem;
}

/* Day expand hint */
.day-expand-hint {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 5px;
    color: #999999;
    font-size: 0.6rem;
    opacity: 0;
    transition: all 0.2s ease;
}

.week-day-header:hover .day-expand-hint {
    opacity: 1;
}

.week-day-header:hover {
    background: rgba(212, 175, 55, 0.05);
}

/* =============================================
   DAY DETAIL MODAL
   ============================================= */

.day-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.day-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.day-modal {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.day-modal-overlay.active .day-modal {
    transform: scale(1) translateY(0);
}

.day-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 10px;
    color: #666;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.day-modal-close:hover {
    background: rgba(220, 53, 69, 0.3);
    color: #ff6b7a;
}

/* Modal Header */
.day-modal-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.day-modal-date {
    display: flex;
    flex-direction: column;
}

.modal-day-name {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.modal-day-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin: 0.25rem 0;
}

.modal-month {
    font-size: 1rem;
    color: var(--text-light);
}

.day-modal-stats {
    display: flex;
    gap: 1.5rem;
}

.modal-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f8f8f8;
    border-radius: 12px;
    min-width: 80px;
}

.modal-stat i {
    font-size: 1rem;
    color: var(--accent-gold);
    margin-bottom: 0.35rem;
}

.modal-stat span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
}

.modal-stat label {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modal Content */
.day-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.day-modal-content::-webkit-scrollbar {
    width: 6px;
}

.day-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.day-modal-content::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.2);
    border-radius: 3px;
}

/* Empty State */
.modal-empty {
    padding: 3rem;
    text-align: center;
    color: var(--text-gray);
}

.modal-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.modal-empty p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.modal-empty span {
    font-size: 0.9rem;
}

/* Modal Shift Card */
.modal-shift {
    position: relative;
    background: #fafafa;
    border-radius: 16px;
    padding: 1.25rem;
    border-left: 5px solid #4CAF50;
    transition: all 0.2s ease;
}

.modal-shift:hover {
    background: #f5f5f5;
}

.modal-shift.modal-type-day {
    border-left-color: #4CAF50;
}

.modal-shift.modal-type-evening {
    border-left-color: #FF9800;
}

.modal-shift.modal-type-night {
    border-left-color: #2196F3;
}

.modal-shift.modal-type-event {
    border-left-color: #9C27B0;
}

/* Shift Main Row */
.modal-shift-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal-shift-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold), #D4AF37);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    flex-shrink: 0;
}

.modal-shift-info {
    flex: 1;
}

.modal-shift-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.25rem;
}

.modal-shift-status {
    font-size: 0.85rem;
}

.modal-shift-status.confirmed {
    color: #4CAF50;
}

.modal-shift-status.pending {
    color: #fbbf24;
}

/* Shift Details */
.modal-shift-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.modal-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.modal-detail i {
    color: var(--accent-gold);
    font-size: 0.85rem;
    width: 16px;
}

.modal-type-badge {
    background: rgba(212, 175, 55, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #333333;
}

/* Shift Note */
.modal-shift-note {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #fafafa;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.modal-shift-note i {
    color: var(--accent-gold);
    margin-top: 0.1rem;
}

/* Shift Delete Button */
.modal-shift-delete {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 53, 69, 0.15);
    color: #ff6b7a;
    border-radius: 8px;
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.2s ease;
    text-decoration: none;
}

.modal-shift:hover .modal-shift-delete {
    opacity: 1;
}

.modal-shift-delete:hover {
    background: rgba(220, 53, 69, 0.35);
    color: #fff;
}

/* Modal Footer */
.day-modal-footer {
    padding: 1.25rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.modal-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-gold), #D4AF37);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.modal-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

/* Modal Responsive */
@media (max-width: 640px) {
    .day-modal-overlay {
        padding: 1rem;
    }

    .day-modal {
        max-height: 90vh;
        border-radius: 20px;
    }

    .day-modal-header {
        flex-direction: column;
        padding: 1.5rem;
    }

    .modal-day-number {
        font-size: 2.5rem;
    }

    .day-modal-stats {
        width: 100%;
        justify-content: center;
    }

    .day-modal-content {
        padding: 1rem;
    }

    .modal-shift {
        padding: 1rem;
    }

    .modal-shift-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .modal-shift-name {
        font-size: 1rem;
    }

    .modal-shift-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .day-modal-footer {
        padding: 1rem;
    }
}

/* =============================================
   DIENSTEN LIST - Admin Rooster Aankomende Diensten
   ============================================= */

.diensten-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dienst-list-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #fafafa;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    border-left: 4px solid #4CAF50;
    transition: all 0.2s ease;
}

.dienst-list-item:hover {
    background: #f5f5f5;
    transform: translateX(4px);
}

.dienst-list-item.dagdienst {
    border-left-color: #4CAF50;
}

.dienst-list-item.avonddienst {
    border-left-color: #FF9800;
}

.dienst-list-item.nachtdienst {
    border-left-color: #2196F3;
}

.dienst-list-item.evenement {
    border-left-color: #9C27B0;
}

/* Date Column */
.dli-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 55px;
    padding: 0.5rem;
    background: #f8f8f8;
    border-radius: 10px;
}

.dli-day-name {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dli-day-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1.1;
}

.dli-month {
    font-size: 0.65rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Main Content */
.dli-main {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
    min-width: 0;
}

.dli-employee {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
}

.dli-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold), #D4AF37);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    flex-shrink: 0;
}

.dli-emp-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dli-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dli-status {
    font-size: 0.75rem;
    margin-top: 0.1rem;
}

.dli-status.confirmed {
    color: #4CAF50;
}

.dli-status.pending {
    color: #fbbf24;
}

/* Details */
.dli-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.dli-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    white-space: nowrap;
}

.dli-detail i {
    color: var(--accent-gold);
    font-size: 0.8rem;
    width: 16px;
}

/* Actions */
.dli-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.dli-reassign {
    display: flex;
}

.dli-select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    background: #f8f8f8;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.8rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23c0c0c0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    max-width: 160px;
}

.dli-select:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.dli-select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.dli-select option {
    background: #1a1a1a;
    color: #ffffff;
}

.dli-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--text-gray);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dli-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.dli-btn.edit:hover {
    background: rgba(33, 150, 243, 0.15);
    border-color: rgba(33, 150, 243, 0.3);
    color: #64B5F6;
}

.dli-btn.delete:hover {
    background: rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.3);
    color: #ff6b7a;
}

/* Responsive Diensten List */
@media (max-width: 1100px) {
    .dli-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .dli-employee {
        min-width: auto;
    }
    
    .dli-details {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .dienst-list-item {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
    }
    
    .dli-date {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }
    
    .dli-day-num {
        font-size: 1.25rem;
    }
    
    .dli-actions {
        justify-content: flex-end;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .dli-select {
        flex: 1;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .dli-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
    
    .dli-actions {
        flex-wrap: wrap;
    }
}

/* =============================================
   GEBRUIKERS LIST - Admin Gebruikers Overzicht
   ============================================= */

.gebruikers-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.user-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fafafa;
    border-radius: 12px;
    padding: 0.9rem 1.25rem;
    border-left: 4px solid #4CAF50;
    transition: all 0.2s ease;
}

.user-list-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

.user-list-item.admin {
    border-left-color: #9C27B0;
}

.user-list-item.zzp {
    border-left-color: #FF9800;
}

.user-list-item.loondienst {
    border-left-color: #2196F3;
}

/* Avatar */
.uli-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold), #D4AF37);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
}

/* Main Content */
.uli-main {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
    min-width: 0;
}

.uli-identity {
    min-width: 180px;
}

.uli-name {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.uli-username {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 0.1rem;
}

.uli-badges {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.uli-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
}

.uli-badge.admin {
    background: rgba(156, 39, 176, 0.2);
    color: #CE93D8;
}

.uli-badge.zzp {
    background: rgba(255, 152, 0, 0.2);
    color: #FFB74D;
}

.uli-badge.loondienst {
    background: rgba(33, 150, 243, 0.2);
    color: #64B5F6;
}

.uli-badge.reset {
    background: rgba(244, 67, 54, 0.2);
    color: #EF9A9A;
}

/* Contact Details */
.uli-contact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 200px;
}

.uli-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.uli-detail i {
    color: var(--accent-gold);
    font-size: 0.75rem;
    width: 14px;
}

/* Rates */
.uli-rates {
    display: flex;
    gap: 0.5rem;
}

.uli-rate {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #f8f8f8;
    color: var(--text-light);
}

.uli-rate i {
    font-size: 0.7rem;
}

.uli-rate.dag i { color: #FFD54F; }
.uli-rate.avond i { color: #FF9800; }
.uli-rate.nacht i { color: #64B5F6; }
.uli-rate.weekend i { color: #81C784; }

/* Actions */
.uli-actions {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
}

.uli-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--text-gray);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.uli-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.uli-btn.invoice:hover {
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
    color: #81C784;
}

.uli-btn.edit:hover {
    background: rgba(33, 150, 243, 0.15);
    border-color: rgba(33, 150, 243, 0.3);
    color: #64B5F6;
}

.uli-btn.reset:hover {
    background: rgba(255, 152, 0, 0.15);
    border-color: rgba(255, 152, 0, 0.3);
    color: #FFB74D;
}

.uli-btn.delete:hover {
    background: rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.3);
    color: #ff6b7a;
}

/* Responsive Gebruikers List */
@media (max-width: 1200px) {
    .uli-main {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .uli-rates {
        flex-wrap: wrap;
    }
}

@media (max-width: 900px) {
    .user-list-item {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .uli-avatar {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 0.9rem;
        position: absolute;
    }
    
    .user-list-item {
        position: relative;
        padding-left: 4.5rem;
    }
    
    .uli-avatar {
        left: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .uli-main {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .uli-identity {
        min-width: auto;
    }
    
    .uli-contact {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        min-width: auto;
    }
    
    .uli-actions {
        justify-content: flex-start;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
}

@media (max-width: 480px) {
    .user-list-item {
        padding: 1rem;
        padding-left: 1rem;
    }
    
    .uli-avatar {
        position: static;
        transform: none;
        margin-bottom: 0.5rem;
    }
    
    .uli-rates {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.35rem;
    }
}

/* =============================================
   RESPONSIVE WEEK OVERVIEW
   ============================================= */

@media (max-width: 1200px) {
    .week-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .week-control-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .week-nav {
        width: 100%;
        justify-content: center;
    }
    
    .week-filter {
        width: 100%;
    }
    
    .week-filter-select {
        width: 100%;
    }
    
    .week-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .week-overview-modern {
        padding: 1.5rem 0 3rem;
    }
    
    .week-control-bar {
        padding: 1rem;
    }
    
    .week-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .week-day-content {
        min-height: 140px;
        max-height: 280px;
    }
}

@media (max-width: 576px) {
    .week-grid {
        grid-template-columns: 1fr;
    }
    
    .week-day {
        border-radius: 12px;
    }
    
    .week-day-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .week-day-header .day-top {
        flex-direction: row;
        align-items: center;
    }
    
    .today-indicator {
        margin-top: 0;
        margin-left: 0.75rem;
    }
    
    .shift-counter {
        position: static;
    }
    
    .week-day-content {
        min-height: auto;
        max-height: none;
    }
    
    .week-grid .shift-card {
        padding: 1rem;
    }
    
    .week-grid .shift-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .week-grid .shift-employee .emp-name {
        font-size: 0.95rem;
    }
    
    .week-grid .shift-status {
        font-size: 0.75rem;
    }
    
    .week-grid .shift-card-body .shift-time {
        font-size: 0.9rem;
    }
    
    .week-grid .shift-type-badge,
    .week-grid .shift-location {
        font-size: 0.8rem;
    }
}
