/* _content/PersoneelPlanner/Components/Calendar/Calendar.razor.rz.scp.css */
/* ADDED: Flex container to manage the overall layout */
.calendar-flex-container[b-j7mniezpok] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ADDED: Scrollable container for the table */
.table-scroll-container[b-j7mniezpok] {
    flex-grow: 1; /* Allows this container to fill available space */
    overflow: auto; /* Enables vertical and horizontal scrolling */
    border-radius: 0 0 16px 16px; /* Keeps the rounded bottom corners */
}

/* Enhanced scrollbar styling for the new scroll container */
.table-scroll-container[b-j7mniezpok]::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

.table-scroll-container[b-j7mniezpok]::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 6px;
    margin: 2px;
}

.table-scroll-container[b-j7mniezpok]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
    border-radius: 6px;
    border: 2px solid #f1f5f9;
}

.table-scroll-container[b-j7mniezpok]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
}

.table-scroll-container[b-j7mniezpok]::-webkit-scrollbar-corner {
    background: #f1f5f9;
}

/* MODERN HEADER STYLES */
.calendar-header[b-j7mniezpok] {
    background: var(--primary-color);
    padding: 10px 32px;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    border-bottom: 1px solid #e2e8f0;
}

.header-content[b-j7mniezpok] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    gap: 24px;
}

.header-left[b-j7mniezpok] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}

.calendar-title[b-j7mniezpok] {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.calendar-title i[b-j7mniezpok] {
    font-size: 1.25rem;
}

.header-center[b-j7mniezpok] {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.navigation-controls[b-j7mniezpok] {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-btn[b-j7mniezpok] {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.nav-btn:hover[b-j7mniezpok] {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-1px);
}

.nav-btn:nth-of-type(2):hover[b-j7mniezpok] {
    transform: translateX(1px);
}

/*.nav-btn:active {
    transform: translateY(0);
}*/

.period-indicator[b-j7mniezpok] {
    padding: 0 20px;
    min-width: 200px;
    text-align: center;
}

.period-text[b-j7mniezpok] {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.header-right[b-j7mniezpok] {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.action-buttons[b-j7mniezpok] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legend-btn[b-j7mniezpok] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 16px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

.legend-btn:hover[b-j7mniezpok] {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.save-btn[b-j7mniezpok] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.save-btn:hover[b-j7mniezpok] {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

.return-btn[b-j7mniezpok] {
    background: linear-gradient(135deg, #4D6271 0%, #002642 100%);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.return-btn:hover[b-j7mniezpok] {
    background: linear-gradient(135deg, #002642 0%, #001524 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

/* TABLE STYLES */
.calendarTable[b-j7mniezpok] {
    table-layout: fixed;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    border-collapse: collapse;
    background: white;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* This rule is now more explicit to ensure it works */
.calendarTable thead[b-j7mniezpok] {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
}

.column-headers th[b-j7mniezpok] {
    position: sticky;
    top: 0;
    z-index: 2;
    /*    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);*/
    background-color: white;
    color: #334155;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 7px;
    text-align: center;
    /*    border: none;*/
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.column-headers th:not(:last-child)[b-j7mniezpok]::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #cbd5e1;
}

.day-column[b-j7mniezpok], .date-column[b-j7mniezpok] {
    background: var(--primary-color) !important;
    color: white !important;
    font-weight: 700;
}

.column-title[b-j7mniezpok] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 24px;
}

.shop-column[b-j7mniezpok] {
    color: #059669;
    font-weight: 600;
}

.employee-column[b-j7mniezpok] {
    flex-direction: column;
    gap: 4px;
}

.employee-name[b-j7mniezpok] {
    font-size: 0.8rem;
    font-weight: 500;
    color: #475569;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.calendarTable th[b-j7mniezpok], .calendarTable td[b-j7mniezpok] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    transition: all 0.2s ease;
}

.calendarTable td[b-j7mniezpok] {
    border: 1px solid #cbd5e1;
}

/*.calendarTable tbody tr {
    border-bottom: 1px solid #f1f5f9;
}*/

/*.calendarTable tbody tr:hover {
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}*/

.calendarTable tbody td[b-j7mniezpok] {
    padding: 5px;
    font-size: 0.875rem;
    color: #334155;
    position: relative;
}

.calendarTable tbody td:first-child[b-j7mniezpok],
.calendarTable tbody td:nth-child(2)[b-j7mniezpok] {
    font-weight: 500;
    color: #475569;
}

.smallColumn[b-j7mniezpok] {
    width: 4%;
}

/*.calendarTable tbody td[style*="background-color"]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: inherit;
    opacity: 0.8;
}*/

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .header-content[b-j7mniezpok] {
        flex-direction: column;
        gap: 16px;
    }

    .header-left[b-j7mniezpok], .header-center[b-j7mniezpok], .header-right[b-j7mniezpok] {
        width: 100%;
    }

    .header-center[b-j7mniezpok] {
        order: 1;
    }

    .header-left[b-j7mniezpok] {
        order: 2;
        text-align: center;
    }

    .header-right[b-j7mniezpok] {
        order: 3;
        justify-content: center;
    }

    .calendar-subtitle[b-j7mniezpok] {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .calendar-header[b-j7mniezpok] {
        padding: 16px 20px;
    }

    .calendar-title[b-j7mniezpok] {
        font-size: 1.25rem;
    }

    .navigation-controls[b-j7mniezpok] {
        padding: 6px;
    }

    .nav-btn[b-j7mniezpok] {
        padding: 8px 10px;
        min-width: 36px;
        height: 36px;
    }

    .period-indicator[b-j7mniezpok] {
        padding: 0 16px;
        min-width: 160px;
    }

    .period-text[b-j7mniezpok] {
        font-size: 0.85rem;
    }

    .action-buttons[b-j7mniezpok] {
        flex-direction: column;
        gap: 8px;
    }

    .legend-btn[b-j7mniezpok], .save-btn[b-j7mniezpok] {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .calendarTable[b-j7mniezpok] {
        font-size: 0.75rem;
    }

    .column-headers th[b-j7mniezpok] {
        padding: 12px 8px;
        font-size: 0.75rem;
    }

    .calendarTable tbody td[b-j7mniezpok] {
        padding: 6px;
        font-size: 0.75rem;
    }

    .employee-name[b-j7mniezpok] {
        max-width: 80px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .calendar-header[b-j7mniezpok] {
        padding: 12px 16px;
    }

    .header-content[b-j7mniezpok] {
        gap: 12px;
    }

    .calendar-title[b-j7mniezpok] {
        font-size: 1.1rem;
    }

    .action-buttons[b-j7mniezpok] {
        width: 100%;
    }

    .legend-btn[b-j7mniezpok], .save-btn[b-j7mniezpok] {
        flex: 1;
        justify-content: center;
    }
}

@media(prefers-color-scheme: dark) {
    .column-headers .employee-column[b-j7mniezpok] {
        background-color: #1f2937;
    }

    .column-headers .employee-name[b-j7mniezpok] {
        color: #f9fafb;
    }

    .column-headers th[b-j7mniezpok] {
        border-color: #4b5563;
    }

    .calendarTable td[b-j7mniezpok] {
        border: 1px solid #4b5563;
    }

    .calendarTable tbody td:first-child[b-j7mniezpok],
    .calendarTable tbody td:nth-child(2)[b-j7mniezpok] {
        background-color: #1f2937;
        color: #f9fafb;
    }

    /* NEW */
    .weekend[b-j7mniezpok] {
        background-color: #374151 !important;
    }
}

/* NEW */
.today[b-j7mniezpok] {
    background-color: var(--today-color);
    color: var(--today-text-color);
}

.weekend[b-j7mniezpok] {
    background-color: var(--weekend-color);
}

.verlof[data-eval="0"][b-j7mniezpok] {
    background-color: var(--verlof-one);
}

.verlof[data-eval="1"][b-j7mniezpok] {
    background-color: var(--verlof-zero);
}

.past-day[b-j7mniezpok] {
    pointer-events: none;
    cursor: not-allowed;
}
/* _content/PersoneelPlanner/Components/Calendar/CalendarModal.razor.rz.scp.css */
.popup-backdrop[b-54jbhsqxsb] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.popup-content[b-54jbhsqxsb] {
    background: white;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
}

.popup-header[b-54jbhsqxsb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.popup-header h1[b-54jbhsqxsb] {
    font-size: x-large;
    margin: 0;
}

.popup-body[b-54jbhsqxsb] {
    font-size: medium;
}

.popup-body label[b-54jbhsqxsb] {
    font-weight: bold;
}

.popup-body p[b-54jbhsqxsb] {
    font-size: medium;
    margin-bottom: 15px;
}

.popup-footer[b-54jbhsqxsb] {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.popup-footer .btn-cancel[b-54jbhsqxsb] {
    border: 1px solid grey;
    background-color: gainsboro;
}

.popup-footer .btn-cancel:hover[b-54jbhsqxsb] {
    background-color: grey;
    color: var(--primary-text-color);
}

.popup-footer .btn-save[b-54jbhsqxsb] {
    border: 1px solid var(--primary-color);
    background-color: rgba(16, 185, 129, 0.1);
}

.popup-footer .btn-save:hover[b-54jbhsqxsb] {
    background-color: var(--primary-color);
    color: var(--primary-text-color);
}

.popup-footer .btn-clear[b-54jbhsqxsb] {
    color: red;
    border: 1px solid red;
    background-color: rgba(255, 122, 119, 0.3);
}

.popup-footer .btn-clear:hover[b-54jbhsqxsb] {
    color: white;
    background-color: red;
}

.popup-footer div[b-54jbhsqxsb] {
    display: flex;
    gap: 15px;
}

.form-group[b-54jbhsqxsb] {
    margin-bottom: 1rem;
}

.close-btn[b-54jbhsqxsb] {
    border: none;
    background-color: transparent;
    font-size: x-large;
    text-align: center;
}

.close-btn:hover[b-54jbhsqxsb] {
    color: var(--primary-color);
}

@media (prefers-color-scheme: dark) {
    .popup-content[b-54jbhsqxsb] {
        background-color: #1f2937;
    }

    .popup-footer .btn-save[b-54jbhsqxsb] {
        background-color: var(--primary-color);
        color: white;
    }

    .popup-footer .btn-save:hover[b-54jbhsqxsb] {
        background-color: #2a4f75;
        border: 1px solid #2a4f75;
        color: var(--primary-text-color);
    }

    .close-btn[b-54jbhsqxsb] {
        color: white;
    }

    .close-btn:hover[b-54jbhsqxsb] {
        color: unset;
    }
}
/* _content/PersoneelPlanner/Components/Calendar/CalendarNavigationBar.razor.rz.scp.css */
/* New Clean & Modern Calendar Header */
.new-calendar-header[b-zv11sqiypf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header-left[b-zv11sqiypf] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.month-display[b-zv11sqiypf] {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
}

.store-display[b-zv11sqiypf] {
    background-color: #edf2f7;
    color: #4a5568;
    padding: 6px 12px;
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: 500;
}

.header-right[b-zv11sqiypf] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-button[b-zv11sqiypf] {
    background-color: transparent;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    padding: 8px 16px;
    color: #4a5568;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .action-button:hover[b-zv11sqiypf] {
        background-color: #f7fafc;
        border-color: #a0aec0;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    .action-button.save-btn[b-zv11sqiypf] {
        background-color: #4299e1;
        border-color: #4299e1;
        color: white;
    }

        .action-button.save-btn:hover[b-zv11sqiypf] {
            background-color: #3182ce;
        }

.info-btn i[b-zv11sqiypf] {
    font-size: 1.1rem;
}

.nav-button-group[b-zv11sqiypf] {
    display: flex;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    overflow: hidden;
}

.nav-btn[b-zv11sqiypf] {
    background-color: transparent;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: #4a5568;
    transition: background-color 0.2s ease;
}

    .nav-btn:first-child[b-zv11sqiypf] {
        border-right: 1px solid #cbd5e0;
    }

    .nav-btn:hover[b-zv11sqiypf] {
        background-color: #edf2f7;
    }

/* Tooltip Styles */
.legend-tooltip-content[b-zv11sqiypf] {
    padding: 10px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.legend-list[b-zv11sqiypf] {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .legend-list li[b-zv11sqiypf] {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
        padding: 4px 0;
    }

.legend-color[b-zv11sqiypf] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

    .legend-color.striped[b-zv11sqiypf] {
        background: repeating-linear-gradient(45deg, #9ca3af, #9ca3af 2px, transparent 2px, transparent 4px);
    }
/* _content/PersoneelPlanner/Components/Calendar/DagCell.razor.rz.scp.css */
/* DagCell.razor.css - Modern Professional Styling */

td[b-uytxukdkc0] {
    position: relative;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid #cbd5e1;
}

td:hover[b-uytxukdkc0] {
    background-color: #f8fafc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

td:hover:has(.selected-cell)[b-uytxukdkc0] {
    background-color: #b3e5fc;
}

.selected-cell[b-uytxukdkc0] {
    background-color: #b3e5fc !important;
    border: 2px solid #0ea5e9 !important;
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.2);
    position: relative;
}

.infoInput[b-uytxukdkc0] {
    width: 100%;
    outline: none;
    border: none;
    font-size: 0.875rem;
    color: #1f2937;
    transition: all 0.2s ease;
    background-color: transparent;
}

span[b-uytxukdkc0] {
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.4;
    position: relative;
    padding: 4px 8px;
    border-radius: 4px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #0ea5e9;
    margin: 2px;
}

span[b-uytxukdkc0]::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #0ea5e9;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.2);
}

td:hover:has(span)[b-uytxukdkc0] {
    transform: translateY(-1px);
}

td.selected-cell:has(span) span[b-uytxukdkc0],
td.selected-cell:has(span) span[b-uytxukdkc0]::before {
    all: unset;
}

/* Animation for new entries */
@keyframes fadeInScale-b-uytxukdkc0 {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

span[b-uytxukdkc0] {
    animation: fadeInScale-b-uytxukdkc0 0.3s ease-out;
}

/* Hover effects for cells with content */
td:has(span):hover span[b-uytxukdkc0] {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #3b82f6;
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

/* Loading state for cells */
.loading-cell[b-uytxukdkc0] {
    position: relative;
    opacity: 0.7;
}

.loading-cell[b-uytxukdkc0]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid #e2e8f0;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: spin-b-uytxukdkc0 1s linear infinite;
}

@keyframes spin-b-uytxukdkc0 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Empty cell styling */
/*td:empty {
    position: relative;
}

td:empty:hover {
    background: #f1f5f9;
}*/

td:empty[b-uytxukdkc0]::before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #94a3b8;
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
}

td:empty:hover:not(.selected-cell)[b-uytxukdkc0]::before {
    opacity: 1;
}

td.readonly-cell[b-uytxukdkc0] {
    pointer-events: none;
}

td.readonly-cell:empty[b-uytxukdkc0]::before {
    content: none !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .infoInput[b-uytxukdkc0] {
        padding: 6px 8px;
        font-size: 0.75rem;
    }

    span[b-uytxukdkc0] {
        font-size: 0.75rem;
        padding: 2px 6px;
    }

    span[b-uytxukdkc0]::before {
        width: 4px;
        height: 4px;
        left: 6px;
    }
}

/* Accessibility improvements */
td:focus-visible[b-uytxukdkc0] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.infoInput:focus-visible[b-uytxukdkc0] {
    outline: none;
}

@media(prefers-color-scheme: dark) {
    td[b-uytxukdkc0] {
        background-color: #1f2937;
        border: 1px solid #4b5563;
    }

    td:hover[b-uytxukdkc0] {
        background-color: #6e7175;
    }
}

.today[b-uytxukdkc0] {
    background-color: var(--today-color);
    color: var(--today-text-color);
}

.weekend[b-uytxukdkc0] {
    background-color: var(--weekend-color);
}

.verlof[data-eval="0"][b-uytxukdkc0] {
    background-color: var(--verlof-one);
}

.verlof[data-eval="1"][b-uytxukdkc0] {
    background-color: var(--verlof-zero);
    pointer-events: none;
}

.past-day[b-uytxukdkc0] {
    pointer-events: none;
    cursor: not-allowed;
}
/* _content/PersoneelPlanner/Components/Dashboard/DashboardCard.razor.rz.scp.css */
/* DashboardCard.razor.css */
.dashboard-card[b-7f14bzkgvw] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    overflow: hidden;
}

    .dashboard-card:hover[b-7f14bzkgvw] {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
    }

.dashboard-card-header[b-7f14bzkgvw] {
    padding: 14px 24px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.dashboard-card-title[b-7f14bzkgvw] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-card-actions[b-7f14bzkgvw] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dashboard-card-subtitle[b-7f14bzkgvw] {
    padding: 0 24px 8px;
    font-size: 0.875rem;
    color: #6b7280;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #f3f4f6;
}

.dashboard-card-body[b-7f14bzkgvw] {
    padding: 14px 24px;
}

.dashboard-card-footer[b-7f14bzkgvw] {
    padding: 16px 24px;
    background-color: #f9fafb;
    border-top: 1px solid #f3f4f6;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Responsive design */
@media (max-width: 768px) {
    .dashboard-card[b-7f14bzkgvw] {
        border-radius: 8px;
    }

    .dashboard-card-header[b-7f14bzkgvw] {
        padding: 16px 20px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .dashboard-card-title[b-7f14bzkgvw] {
        font-size: 1.125rem;
    }

    .dashboard-card-body[b-7f14bzkgvw] {
        padding: 20px;
    }

    .dashboard-card-actions[b-7f14bzkgvw] {
        width: 100%;
        justify-content: flex-end;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .dashboard-card[b-7f14bzkgvw] {
        background: #1f2937;
        border-color: #374151;
        color: #f9fafb;
    }

    .dashboard-card-header[b-7f14bzkgvw] {
        background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
        border-bottom-color: #374151;
    }

    .dashboard-card-title[b-7f14bzkgvw] {
        color: #f9fafb;
    }

    .dashboard-card-subtitle[b-7f14bzkgvw] {
        color: #9ca3af;
        background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
        border-bottom-color: #374151;
    }

    .dashboard-card-footer[b-7f14bzkgvw] {
        background-color: #111827;
        border-top-color: #374151;
        color: #9ca3af;
    }

    .dashboard-card:hover[b-7f14bzkgvw] {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }
}

/* Variants */
.dashboard-card.compact .dashboard-card-header[b-7f14bzkgvw] {
    padding: 16px 20px 12px;
}

.dashboard-card.compact .dashboard-card-body[b-7f14bzkgvw] {
    padding: 16px 20px;
}

.dashboard-card.no-padding .dashboard-card-body[b-7f14bzkgvw] {
    padding: 0;
}

.dashboard-card.highlight[b-7f14bzkgvw] {
    border-left: 4px solid #3b82f6;
}

.dashboard-card.success[b-7f14bzkgvw] {
    border-left: 4px solid #10b981;
}

.dashboard-card.warning[b-7f14bzkgvw] {
    border-left: 4px solid #f59e0b;
}

.dashboard-card.error[b-7f14bzkgvw] {
    border-left: 4px solid #ef4444;
}

@media (max-width: 768px) {
    .dashboard-card[b-7f14bzkgvw] {
        width: 100%;
        box-sizing: border-box;
    }

    .dashboard-flexible-grid[b-7f14bzkgvw] {
        padding: 0 12px; /* optional horizontal padding to avoid touching screen edges */
    }
}
/* _content/PersoneelPlanner/Components/Dashboard/EmployeeHoursCard.razor.rz.scp.css */
/* EmployeeHoursCard.razor.css */
.employee-hours-card[b-r8iuajdmir] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 22rem;
}

.search-container[b-r8iuajdmir] {
    position: relative;
    margin-bottom: 16px;
}

.search-input[b-r8iuajdmir] {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

    .search-input:focus[b-r8iuajdmir] {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

.search-icon[b-r8iuajdmir] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 16px;
}

.employee-list-container[b-r8iuajdmir] {
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 16px;
}

.employee-list[b-r8iuajdmir] {
    display: flex;
    flex-direction: column;
}

.employee-item[b-r8iuajdmir] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

    .employee-item:hover[b-r8iuajdmir] {
        background-color: #f8fafc;
    }

    .employee-item.selected[b-r8iuajdmir] {
        background-color: #eff6ff;
        border-left: 4px solid #3b82f6;
    }

    .employee-item:last-child[b-r8iuajdmir] {
        border-bottom: none;
    }

.employee-info[b-r8iuajdmir] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.employee-name[b-r8iuajdmir] {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
}

.employee-badge[b-r8iuajdmir] {
    font-size: 12px;
    color: #6b7280;
}

.employee-hours[b-r8iuajdmir] {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hours-item[b-r8iuajdmir] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hours-label[b-r8iuajdmir] {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
}

.hours-value[b-r8iuajdmir] {
    font-size: 13px;
    font-weight: 600;
}

.hours-item.recup .hours-value[b-r8iuajdmir] {
    color: #059669;
}

.hours-item.kassaafsluit .hours-value[b-r8iuajdmir] {
    color: var(--primary-color);
}

.no-results[b-r8iuajdmir] {
    padding: 32px 16px;
    text-align: center;
    color: #6b7280;
    font-style: italic;
}

.employee-details[b-r8iuajdmir] {
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
}

.details-header[b-r8iuajdmir] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .details-header h4[b-r8iuajdmir] {
        margin: 0;
        color: #1f2937;
        font-size: 18px;
        font-weight: 600;
    }

.badge-number[b-r8iuajdmir] {
    background-color: #e5e7eb;
    color: #374151;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.hours-summary[b-r8iuajdmir] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.summary-item[b-r8iuajdmir] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.summary-icon[b-r8iuajdmir] {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.recup-summary .summary-icon[b-r8iuajdmir] {
    background-color: #dcfce7;
}

.kassa-summary .summary-icon[b-r8iuajdmir] {
    background-color: #fef3c7;
}

.summary-content[b-r8iuajdmir] {
    flex: 1;
}

.summary-title[b-r8iuajdmir] {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 4px;
}

.summary-value[b-r8iuajdmir] {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2px;
}

.summary-subtitle[b-r8iuajdmir] {
    font-size: 11px;
    color: #9ca3af;
}

.total-hours[b-r8iuajdmir] {
    text-align: center;
    padding: 12px;
    background-color: #ffffff;
    border-radius: 6px;
    border: 2px solid #3b82f6;
    color: #1f2937;
}

/* Responsive design */
@media (max-width: 768px) {
    .employee-hours-card[b-r8iuajdmir] {
        height: auto;
        max-height: 500px;
    }

    .employee-hours[b-r8iuajdmir] {
        flex-direction: row;
        gap: 8px;
    }

    .hours-summary[b-r8iuajdmir] {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .employee-item[b-r8iuajdmir] {
        align-items: flex-start;
        gap: 12px;
    }

    .employee-hours[b-r8iuajdmir] {
        align-self: stretch;
        justify-content: space-around;
        padding-top: 8px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .employee-hours-card[b-r8iuajdmir] {
        background-color: #1f2937;
        color: #f9fafb;
    }

    .search-input[b-r8iuajdmir] {
        background-color: #374151;
        border-color: #4b5563;
        color: #f9fafb;
    }

        .search-input:focus[b-r8iuajdmir] {
            border-color: #60a5fa;
        }

    .search-icon[b-r8iuajdmir] {
        color: #9ca3af;
    }

    .employee-list-container[b-r8iuajdmir] {
        border-color: #4b5563;
    }

    .employee-item[b-r8iuajdmir] {
        background-color: #374151;
        border-bottom-color: #4b5563;
    }

        .employee-item:hover[b-r8iuajdmir] {
            background-color: #4b5563;
        }

        .employee-item.selected[b-r8iuajdmir] {
            background-color: #1e3a8a;
            border-left-color: #60a5fa;
        }

    .employee-name[b-r8iuajdmir] {
        color: #f9fafb;
    }

    .employee-badge[b-r8iuajdmir] {
        color: #d1d5db;
    }

    .hours-label[b-r8iuajdmir] {
        color: #d1d5db;
    }

    .employee-details[b-r8iuajdmir] {
        background-color: #374151;
        border-color: #4b5563;
    }

    .details-header h4[b-r8iuajdmir] {
        color: #f9fafb;
    }

    .badge-number[b-r8iuajdmir] {
        background-color: #4b5563;
        color: #d1d5db;
    }

    .summary-item[b-r8iuajdmir] {
        background-color: #1f2937;
        border-color: #4b5563;
    }

    .summary-title[b-r8iuajdmir] {
        color: #d1d5db;
    }

    .summary-value[b-r8iuajdmir] {
        color: #f9fafb;
    }

    .summary-subtitle[b-r8iuajdmir] {
        color: #9ca3af;
    }

    .total-hours[b-r8iuajdmir] {
        background-color: #1f2937;
        border-color: #60a5fa;
        color: #f9fafb;
    }

    .no-results[b-r8iuajdmir] {
        color: #9ca3af;
    }
}
/* _content/PersoneelPlanner/Components/EmployeeGanttChart/DayViewGanttChart.razor.rz.scp.css */
/* ==========================================================================
   Keyframes (Animations)
   ========================================================================== */

@keyframes spin-b-03sdeblg5y {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-b-03sdeblg5y {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes slideUp-b-03sdeblg5y {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add these CSS classes to your stylesheet */
.employee-hours-icon[b-03sdeblg5y] {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #ecfdf5;
    color: var(--primary-color);
    padding: 0px 2px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

.clock-icon[b-03sdeblg5y] {
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

.interval-cell.dragging[b-03sdeblg5y] {
    opacity: 0.7;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    cursor: grabbing !important;
}

.interval-cell.other-store[b-03sdeblg5y] {
    background-image: repeating-linear-gradient( 34.8deg, #856404 0, transparent 1px, transparent 6px) !important;
}

.interval-selected:not(.dragging)[b-03sdeblg5y] {
    cursor: grab;
}

.interval-cell.drag-target[b-03sdeblg5y] {
    border: 2px dashed #3b82f6;
    background-color: rgba(59, 130, 246, 0.1) !important;
}

.gantt-row.drag-over[b-03sdeblg5y] {
    background-color: rgba(59, 130, 246, 0.05);
}

.timeline-cell.drag-invalid[b-03sdeblg5y] {
    background-color: rgba(239, 68, 68, 0.1) !important;
    border: 1px dashed #ef4444;
}

.timeline-cell .interval-cell .interval-part .interval-end[b-03sdeblg5y] {
    overflow: hidden;
}
/* ==========================================================================
   Main Layout & Container
   ========================================================================== */
.gantt-container[b-03sdeblg5y] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden; /* Keeps the rounded corners working */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    border: 1px solid #e5e7eb;
    height: 100%;
    max-height: fit-content;
    display: flex; /* Use flexbox */
    flex-direction: column; /* Stack children vertically */
}

.gantt-table-container[b-03sdeblg5y] {
    overflow: auto; /* This makes the table scrollable */
    position: relative;
    flex-grow: 1; /* Allows this element to fill available vertical space */
}

.gantt-table[b-03sdeblg5y] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    table-layout: fixed;
}

    .gantt-table.gantt-disabled[b-03sdeblg5y] {
        opacity: 0.7;
        pointer-events: none;
    }

/* ==========================================================================
   Loading & Empty States
   ========================================================================== */

.gantt-loading[b-03sdeblg5y] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #6b7280;
    gap: 16px;
}

.loading-spinner[b-03sdeblg5y] {
    width: 32px;
    height: 32px;
    border: 3px solid #e5e7eb;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: spin-b-03sdeblg5y 1s linear infinite;
}

.no-data[b-03sdeblg5y] {
    text-align: center;
    padding: 40px 20px;
}

.empty-state[b-03sdeblg5y] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #64748b;
}

.empty-icon[b-03sdeblg5y] {
    font-size: 48px;
    opacity: 0.5;
}

.empty-state p[b-03sdeblg5y] {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
}

.empty-state small[b-03sdeblg5y] {
    font-size: 14px;
    color: #9ca3af;
}

/* ==========================================================================
   Header Controls (Top Bar)
   ========================================================================== */

.gantt-header-controls[b-03sdeblg5y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.gantt-info[b-03sdeblg5y] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.date-info[b-03sdeblg5y] {
    font-weight: 500;
    color: #64748b;
    font-size: 12px;
    text-transform: capitalize;
}

.time-range[b-03sdeblg5y] {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.past-day-indicator[b-03sdeblg5y] {
    display: flex;
    align-items: center;
    padding: 2px 8px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
    border: 1px solid #f59e0b;
}

/* ==========================================================================
   Table Rows & Employee Info Column
   ========================================================================== */

.gantt-row[b-03sdeblg5y] {
    transition: background-color 0.2s ease;
}

    .gantt-row:hover[b-03sdeblg5y] {
        background-color: #f8fafc;
    }

    .gantt-row.employee-selected[b-03sdeblg5y] {
        background-color: #eff6ff;
        border-left: 4px solid #3b82f6;
    }

        .gantt-row.employee-selected .employee-info[b-03sdeblg5y] {
            background-color: #eff6ff;
            border-left: 4px solid #3b82f6;
        }

    /* Target timeline cells in disabled rows */

    .gantt-row.row-disabled[b-03sdeblg5y] {
        opacity: 0.7;
    }

        .gantt-row.row-disabled .timeline-cell[b-03sdeblg5y] {
            pointer-events: none;
        }

        .gantt-row.row-disabled .employee-info[b-03sdeblg5y] {
            pointer-events: all;
        }

        /* Hover effect for empty cells in disabled rows */
        .gantt-row.row-disabled td.timeline-cell.empty-cell:hover[b-03sdeblg5y] {
            cursor: not-allowed !important;
            background: transparent !important;
            transform: none !important;
            box-shadow: none !important;
            background-color: transparent !important;
            opacity: 0.3 !important;
        }

    .gantt-row .employee-info[b-03sdeblg5y] {
        cursor: pointer;
    }

.employee-info[b-03sdeblg5y] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 16px;
    background: #ffffff;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    left: 0;
    z-index: 5;
}

.employee-details[b-03sdeblg5y] {
    flex: 1;
    min-width: 0;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
}

.employee-name[b-03sdeblg5y] {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.employee-houre[b-03sdeblg5y] {
    font-weight: 600;
    color: #1e293b;
    font-size: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.employee-badge[b-03sdeblg5y] {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.employee-stats[b-03sdeblg5y] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hours-indicator[b-03sdeblg5y] {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* ==========================================================================
   Timeline Cells
   ========================================================================== */

/* Base style for all timeline cells */
.timeline-cell[b-03sdeblg5y] {
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    cursor: pointer;
    transition: all 0.15s ease;
    width: 15px;
    min-width: 15px;
    max-width: 15px;
    box-sizing: border-box;
}

/* Empty cell styles */
.empty-cell[b-03sdeblg5y] {
    background: #ffffff;
}

    .empty-cell:hover[b-03sdeblg5y] {
        filter: brightness(1.1);
        cursor: pointer;
        background: #f0f9ff;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        background-color: var(--primary-color);
        opacity: .3;
    }

/* Other cell states */
.cell-selected[b-03sdeblg5y] {
    background: #dbeafe !important;
    border: 2px solid #3b82f6 !important;
}

.timeline-cell.empty-cell.cell-selected:hover[b-03sdeblg5y] {
    background: #dbeafe !important;
    border: 2px solid #3b82f6 !important;
    opacity: unset;
    transform: unset;
}
/*.cell-potential {
    background: #ecfdf5 !important;
    border: 1px dashed #10b981;
}*/
.cell-blocked[b-03sdeblg5y] {
    background: #fef2f2;
    cursor: not-allowed;
}

/*.cell-conflict {
    background: #fee2e2 !important;
    border: 1px solid #ef4444;
}*/

.cell-current-time[b-03sdeblg5y] {
    background: #fefce8;
    border-left: 3px solid #eab308;
}

.current-time-indicator[b-03sdeblg5y] {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #eab308;
    animation: pulse-b-03sdeblg5y 2s infinite;
}

/* ==========================================================================
   Intervals (Scheduled Blocks)
   ========================================================================== */

/* Base container for an interval block */
.interval-cell[b-03sdeblg5y] {
    background: #e2e8f0;
    border: none;
    cursor: pointer;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Base style for parts of a multi-cell interval */
.interval-part[b-03sdeblg5y] {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: none;
    border-right: none;
}

/* Borders for different interval positions */
.interval-start[b-03sdeblg5y] {
    border-left: 2px solid rgba(0, 0, 0, 0.2);
}

.interval-end[b-03sdeblg5y] {
    border-right: 2px solid rgba(0, 0, 0, 0.2);
}

.interval-single[b-03sdeblg5y] {
    border-left: 2px solid rgba(0, 0, 0, 0.2);
    border-right: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

/* Interval states (hover, selected, resizing) */
.interval-disabled:hover[b-03sdeblg5y] {
    filter: none;
    cursor: not-allowed;
}

.interval-cell.interval-disabled[b-03sdeblg5y] {
    cursor: not-allowed;
}

.interval-resizing[b-03sdeblg5y] {
    opacity: 0.8;
    transform: scale(1.02);
    z-index: 4;
}

.interval-cell.interval-resizing[b-03sdeblg5y] {
    border: 2px solid #10b981;
    cursor: ew-resize !important;
}

.interval-cell.interval-selected.interval-start[b-03sdeblg5y] {
    border: 2px solid #1d4ed8 !important;
    border-right: none !important;
}

.interval-cell.interval-selected.interval-middle[b-03sdeblg5y] {
    border: 2px solid #1d4ed8 !important;
    border-right: none !important;
    border-left: none !important;
}

.interval-cell.interval-selected.interval-end[b-03sdeblg5y] {
    border: 2px solid #1d4ed8 !important;
    border-left: none !important;
}

/* Styles for "copy" mode */
.interval-cell.interval-copy.interval-start[b-03sdeblg5y] {
    border: 2px dashed #1d4ed8;
    border-right: none;
}

.interval-cell.interval-copy.interval-middle[b-03sdeblg5y] {
    border: 2px dashed #1d4ed8;
    border-right: none;
    border-left: none;
}

.interval-cell.interval-copy.interval-end[b-03sdeblg5y] {
    border: 2px dashed #1d4ed8;
    border-left: none;
}

.interval-content[b-03sdeblg5y] {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
    white-space: nowrap;
    overflow: visible;
    color: black;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
    height: 100%;
    /* Padding is defined in size-specific classes below */
    padding: 4px 2px; /* Base padding, overridden below */
    min-width: 0;
}

    /* Size-based variations for interval content */
    .interval-content.short[b-03sdeblg5y] {
        padding: 0px 1px;
        text-align: center;
    }

    .interval-content.medium[b-03sdeblg5y] {
        padding: 0px 2px;
    }

    .interval-content.long[b-03sdeblg5y] {
        padding: 0px 12px;
    }

/* Interval text and description */
.interval-header[b-03sdeblg5y] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 2px;
}

.interval-text[b-03sdeblg5y] {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.2;
}

    .interval-text.short[b-03sdeblg5y] {
        font-size: 10px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
    }

    .interval-text.medium[b-03sdeblg5y] {
        font-size: 11px;
        font-weight: 600;
        line-height: 1.1;
    }

    .interval-text.long[b-03sdeblg5y] {
        font-size: 13px;
        font-weight: 600;
        line-height: 1.2;
    }

.interval-time[b-03sdeblg5y] {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 500;
}

.interval-description[b-03sdeblg5y] {
    font-size: 11px;
    opacity: 0.8;
    line-height: 1.2;
    margin-top: 2px;
}

    .interval-time.short[b-03sdeblg5y],
    .interval-description.short[b-03sdeblg5y] {
        display: none;
    }

.interval-time.medium[b-03sdeblg5y] {
    font-size: 9px;
}

/* ==========================================================================
   UI Components & Widgets
   ========================================================================== */

/* --- MERGED resize-handle --- */
/* All resize-handle definitions were combined. Last-defined properties won. */
.resize-handle[b-03sdeblg5y] {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    opacity: 1;
    width: 8px;
    cursor: ew-resize;
    background: rgba(255, 255, 255, 0.2);
    transition: opacity 0.2s ease;
}

    .resize-handle:hover[b-03sdeblg5y] {
        background: rgba(255, 255, 255, 0.4);
    }

/* --- MERGED resize-left & resize-right --- */
/* The second set of rules overrode the first set completely. */
.resize-left[b-03sdeblg5y] {
    left: 0;
    border-radius: 0 4px 4px 0;
}

.resize-right[b-03sdeblg5y] {
    right: 0;
    border-radius: 4px 0 0 4px;
}

/* Work type indicators */
.worktype-indicator[b-03sdeblg5y] {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.worktype-color[b-03sdeblg5y] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.worktype-info[b-03sdeblg5y] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.worktype-name[b-03sdeblg5y] {
    font-weight: 500;
    color: #1e293b;
}

.worktype-desc[b-03sdeblg5y] {
    color: #64748b;
    font-size: 12px;
}

.check-mark[b-03sdeblg5y] {
    position: absolute;
    right: -20px;
    color: #10b981;
    font-weight: bold;
}

.interval-selected-indicator[b-03sdeblg5y] {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.delete-icon[b-03sdeblg5y] {
    margin-right: 4px;
}

/* ==========================================================================
   Utility Styles
   ========================================================================== */

/* Disable text selection on various elements */
.interval-content[b-03sdeblg5y],
.interval-text[b-03sdeblg5y],
.employee-name[b-03sdeblg5y],
.employee-badge[b-03sdeblg5y],
.gantt-table[b-03sdeblg5y],
.gantt-table *[b-03sdeblg5y] {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* ==========================================================================
   Responsive & Print Styles
   ========================================================================== */

@media (max-width: 768px) {
    .gantt-container[b-03sdeblg5y] {
        border-radius: 0;
        box-shadow: none;
    }

    .employee-header-content span[b-03sdeblg5y] {
        font-size: 11px;
    }

    .hour-header[b-03sdeblg5y] {
        font-size: 11px;
    }

    .quarter-cell[b-03sdeblg5y] {
        font-size: 10px;
    }

    .gantt-header-controls[b-03sdeblg5y] {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .employee-column-header[b-03sdeblg5y] {
        width: 150px;
        min-width: 150px;
    }

    .employee-avatar[b-03sdeblg5y] {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .context-menu[b-03sdeblg5y] {
        min-width: 250px;
    }
}

@media print {
    .gantt-container[b-03sdeblg5y] {
        box-shadow: none;
        border: 1px solid #000;
    }

    .context-menu[b-03sdeblg5y],
    .selection-preview[b-03sdeblg5y] {
        display: none !important;
    }
}

/* ==========================================================================
   Dark Mode Support
   ========================================================================== */

@media (prefers-color-scheme: dark) {
    .employee-hours-icon[b-03sdeblg5y] {
        background: rgba(16, 185, 129, 0.2);
        color: #10b981;
        border-color: #10b981;
    }

    .gantt-container[b-03sdeblg5y] {
        background: var(--background-color);
        border-color: var(--border-color);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .gantt-table[b-03sdeblg5y] {
        background: var(--background-color);
    }

    .gantt-loading[b-03sdeblg5y] {
        color: var(--text-color);
    }

    .loading-spinner[b-03sdeblg5y] {
        border-color: var(--border-color);
        border-top-color: var(--primary-color);
    }

    .empty-state[b-03sdeblg5y] {
        color: var(--text-color);
    }

    .empty-state p[b-03sdeblg5y] {
        color: var(--text-color);
    }

    .empty-state small[b-03sdeblg5y] {
        color: #9ca3af;
    }

    .gantt-header-controls[b-03sdeblg5y] {
        background: linear-gradient(135deg, var(--hover-color) 0%, var(--background-color) 100%);
    }

    .date-info[b-03sdeblg5y],
    .time-range[b-03sdeblg5y] {
        color: var(--text-color);
    }

    .past-day-indicator[b-03sdeblg5y] {
        background: var(--today-color);
        color: var(--today-text-color);
        border-color: var(--warning-color);
    }

    .gantt-row:hover[b-03sdeblg5y] {
        background-color: var(--hover-color);
    }

    .gantt-row.employee-selected[b-03sdeblg5y] {
        background-color: rgba(54, 116, 181, 0.2);
    }

    .gantt-row.employee-selected .employee-info[b-03sdeblg5y] {
        background-color: rgba(54, 116, 181, 0.2);
    }

    .gantt-row.row-disabled .timeline-cell.empty-cell:hover[b-03sdeblg5y] {
        background: transparent !important;
    }

    .employee-info[b-03sdeblg5y] {
        background: var(--background-color);
        border-right-color: var(--border-color);
        border-bottom-color: var(--border-color);
    }

    .employee-name[b-03sdeblg5y] {
        color: var(--text-color);
    }

    .employee-houre[b-03sdeblg5y] {
        color: var(--text-color);
    }

    .employee-badge[b-03sdeblg5y] {
        color: #9ca3af;
    }

    .hours-indicator[b-03sdeblg5y] {
        background: rgba(54, 116, 181, 0.2);
        color: var(--primary-color);
    }

    .timeline-cell[b-03sdeblg5y] {
        border-right-color: var(--border-color);
        border-bottom-color: var(--border-color);
    }

    .empty-cell[b-03sdeblg5y] {
        background: var(--background-color);
    }

    .empty-cell:hover[b-03sdeblg5y] {
        background: var(--hover-color);
    }

    .cell-blocked[b-03sdeblg5y] {
        background: rgba(239, 68, 68, 0.2);
    }

    .cell-current-time[b-03sdeblg5y] {
        background: rgba(245, 158, 11, 0.2);
        border-left-color: var(--warning-color);
    }

    .current-time-indicator[b-03sdeblg5y] {
        background: var(--warning-color);
    }

    .interval-cell[b-03sdeblg5y] {
        background: var(--hover-color);
    }

    .interval-content[b-03sdeblg5y] {
        color: var(--text-color);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }

    .worktype-name[b-03sdeblg5y] {
        color: var(--text-color);
    }

    .worktype-desc[b-03sdeblg5y] {
        color: #9ca3af;
    }

    .worktype-color[b-03sdeblg5y] {
        border-color: var(--border-color);
    }
}
/* _content/PersoneelPlanner/Components/EmployeeGanttChart/EmployeeViewGanttChart.razor.rz.scp.css */
/* ==========================================================================
   Keyframes (Animations)
   ========================================================================== */

@keyframes spin-b-5alylajixc {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-b-5alylajixc {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes slideUp-b-5alylajixc {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add these CSS classes to your stylesheet */
.employee-hours-icon[b-5alylajixc] {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #ecfdf5;
    color: var(--primary-color);
    padding: 0px 2px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

.interval-cell.dragging[b-5alylajixc] {
    opacity: 0.7;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    cursor: grabbing !important;
}

.interval-selected:not(.dragging)[b-5alylajixc] {
    cursor: grab;
}

.interval-cell.drag-target[b-5alylajixc] {
    border: 2px dashed #3b82f6;
    background-color: rgba(59, 130, 246, 0.1) !important;
}

.gantt-row.drag-over[b-5alylajixc] {
    background-color: rgba(59, 130, 246, 0.05);
}

.timeline-cell.drag-invalid[b-5alylajixc] {
    background-color: rgba(239, 68, 68, 0.1) !important;
    border: 1px dashed #ef4444;
}

/* ==========================================================================
   Main Layout & Container
   ========================================================================== */

.gantt-container[b-5alylajixc] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    border: 1px solid #e5e7eb;
    height: 100%;
    max-height: fit-content;
    overflow: auto;
}

.gantt-table[b-5alylajixc] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    table-layout: fixed; /* Added from a later rule */
}

/* ==========================================================================
   Loading & Empty States
   ========================================================================== */

.gantt-loading[b-5alylajixc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #6b7280;
    gap: 16px;
}

.loading-spinner[b-5alylajixc] {
    width: 32px;
    height: 32px;
    border: 3px solid #e5e7eb;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: spin-b-5alylajixc 1s linear infinite;
}

.no-data[b-5alylajixc] {
    text-align: center;
    padding: 40px 20px;
}

.empty-state[b-5alylajixc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #64748b;
}

.empty-icon[b-5alylajixc] {
    font-size: 48px;
    opacity: 0.5;
}

.empty-state p[b-5alylajixc] {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
}

.empty-state small[b-5alylajixc] {
    font-size: 14px;
    color: #9ca3af;
}

/* ==========================================================================
   Header Controls (Top Bar)
   ========================================================================== */

.gantt-header-controls[b-5alylajixc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.gantt-info[b-5alylajixc] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.date-info[b-5alylajixc] {
    font-weight: 500;
    color: #64748b;
    font-size: 12px;
    text-transform: capitalize;
}

.time-range[b-5alylajixc] {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.past-day-indicator[b-5alylajixc] {
    display: flex;
    align-items: center;
    padding: 2px 8px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
    border: 1px solid #f59e0b;
}

/* ==========================================================================
   Table Rows & Employee Info Column
   ========================================================================== */

.gantt-row[b-5alylajixc] {
    transition: background-color 0.2s ease;
}

    .gantt-row:hover[b-5alylajixc] {
        background-color: #f8fafc;
    }

    .gantt-row.employee-selected[b-5alylajixc] {
        background-color: #eff6ff;
        border-left: 4px solid #3b82f6;
    }

        .gantt-row.employee-selected .employee-info[b-5alylajixc] {
            background-color: #eff6ff;
            border-left: 4px solid #3b82f6;
        }

    .gantt-row .employee-info[b-5alylajixc] {
        cursor: pointer;
    }

    .gantt-row.gantt-disabled[b-5alylajixc] {
        opacity: 0.7;
    }

        .gantt-row.gantt-disabled .timeline-cell[b-5alylajixc] {
            pointer-events: none;
        }

        .gantt-row.gantt-disabled .employee-info[b-5alylajixc] {
            pointer-events: all;
        }

        /* Hover effect for empty cells in disabled rows */
        .gantt-row.gantt-disabled td.timeline-cell.empty-cell:hover[b-5alylajixc] {
            cursor: not-allowed !important;
            background: transparent !important;
            transform: none !important;
            box-shadow: none !important;
            background-color: transparent !important;
            opacity: 0.3 !important;
        }

.employee-info[b-5alylajixc] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 16px;
    background: #ffffff;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    left: 0;
    z-index: 5;
}

.employee-details[b-5alylajixc] {
    flex: 1;
    min-width: 0;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
}

.employee-name[b-5alylajixc] {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}

.employee-houre[b-5alylajixc] {
    font-weight: 600;
    color: #1e293b;
    font-size: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.employee-badge[b-5alylajixc] {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.employee-stats[b-5alylajixc] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hours-indicator[b-5alylajixc] {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* ==========================================================================
   Timeline Cells
   ========================================================================== */

/* Base style for all timeline cells */
.timeline-cell[b-5alylajixc] {
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    cursor: pointer;
    transition: all 0.15s ease;
    width: 15px;
    min-width: 15px;
    max-width: 15px;
    box-sizing: border-box;
}

/* Empty cell styles */
.empty-cell[b-5alylajixc] {
    background: #ffffff;
}

    .empty-cell:hover[b-5alylajixc] {
        filter: brightness(1.1);
        cursor: pointer;
        background: #f0f9ff;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        background-color: var(--primary-color);
        opacity: .3;
    }

/* Other cell states */
.cell-selected[b-5alylajixc] {
    background: #dbeafe !important;
    border: 2px solid #3b82f6 !important;
}

.timeline-cell.empty-cell.cell-selected:hover[b-5alylajixc] {
    background: #dbeafe !important;
    border: 2px solid #3b82f6 !important;
    opacity: unset;
    transform: unset;
}

.cell-potential[b-5alylajixc] {
    background: #ecfdf5 !important;
    border: 1px dashed #10b981;
}

.cell-blocked[b-5alylajixc] {
    background: #fef2f2;
    cursor: not-allowed;
}

/*.cell-conflict {
    background: #fee2e2 !important;
    border: 1px solid #ef4444;
}*/

/*.cell-current-time {
    background: #fefce8;
    border-left: 3px solid #eab308;
}

.current-time-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #eab308;
    animation: pulse 2s infinite;
}*/

/* ==========================================================================
   Intervals (Scheduled Blocks)
   ========================================================================== */

/* Base container for an interval block */
.interval-cell[b-5alylajixc] {
    background: #e2e8f0;
    border: none;
    cursor: pointer;
    position: relative;
    /* Merged from a later rule */
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Base style for parts of a multi-cell interval */
.interval-part[b-5alylajixc] {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: none;
    border-right: none;
}

/* Borders for different interval positions */
.interval-start[b-5alylajixc] {
    border-left: 2px solid rgba(0, 0, 0, 0.2);
}

.interval-end[b-5alylajixc] {
    border-right: 2px solid rgba(0, 0, 0, 0.2);
}

.interval-single[b-5alylajixc] {
    border-left: 2px solid rgba(0, 0, 0, 0.2);
    border-right: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

/* Interval states (hover, selected, resizing) */
.interval-disabled:hover[b-5alylajixc] {
    filter: none;
    cursor: not-allowed;
}

.interval-cell.interval-disabled[b-5alylajixc] {
    cursor: not-allowed;
}

.interval-resizing[b-5alylajixc] {
    opacity: 0.8;
    transform: scale(1.02);
    z-index: 4;
}

.interval-cell.interval-resizing[b-5alylajixc] {
    border: 2px solid #10b981;
    cursor: ew-resize !important;
}

.interval-cell.interval-selected.interval-start[b-5alylajixc] {
    border: 2px solid #1d4ed8 !important;
    border-right: none !important;
}

.interval-cell.interval-selected.interval-middle[b-5alylajixc] {
    border: 2px solid #1d4ed8 !important;
    border-right: none !important;
    border-left: none !important;
}

.interval-cell.interval-selected.interval-end[b-5alylajixc] {
    border: 2px solid #1d4ed8 !important;
    border-left: none !important;
}

/* Styles for "copy" mode */
.interval-cell.interval-copy.interval-start[b-5alylajixc] {
    border: 2px dashed #1d4ed8;
    border-right: none;
}

.interval-cell.interval-copy.interval-middle[b-5alylajixc] {
    border: 2px dashed #1d4ed8;
    border-right: none;
    border-left: none;
}

.interval-cell.interval-copy.interval-end[b-5alylajixc] {
    border: 2px dashed #1d4ed8;
    border-left: none;
}

/* --- MERGED interval-content --- */
/* Multiple definitions were combined into one section. */
.interval-content[b-5alylajixc] {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
    white-space: nowrap;
    overflow: visible;
    color: black;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
    height: 100%;
    /* Padding is defined in size-specific classes below */
    padding: 4px 2px; /* Base padding, overridden below */
    min-width: 0;
}

    /* Size-based variations for interval content */
    .interval-content.short[b-5alylajixc] {
        padding: 0px 1px;
        text-align: center;
    }

    .interval-content.medium[b-5alylajixc] {
        padding: 0px 2px;
    }

    .interval-content.long[b-5alylajixc] {
        padding: 0px 12px;
    }

/* Interval text and description */
.interval-header[b-5alylajixc] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 2px;
}

.interval-text[b-5alylajixc] {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.2;
}

    .interval-text.short[b-5alylajixc] {
        font-size: 10px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
    }

    .interval-text.medium[b-5alylajixc] {
        font-size: 11px;
        font-weight: 600;
        line-height: 1.1;
    }

    .interval-text.long[b-5alylajixc] {
        font-size: 13px;
        font-weight: 600;
        line-height: 1.2;
    }

.interval-time[b-5alylajixc] {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 500;
}

.interval-description[b-5alylajixc] {
    font-size: 11px;
    opacity: 0.8;
    line-height: 1.2;
    margin-top: 2px;
}

    .interval-time.short[b-5alylajixc],
    .interval-description.short[b-5alylajixc] {
        display: none;
    }

.interval-time.medium[b-5alylajixc] {
    font-size: 9px;
}

/* ==========================================================================
   UI Components & Widgets
   ========================================================================== */

/* --- MERGED resize-handle --- */
/* All resize-handle definitions were combined. Last-defined properties won. */
.resize-handle[b-5alylajixc] {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    opacity: 1;
    width: 8px;
    cursor: ew-resize;
    background: rgba(255, 255, 255, 0.2);
    transition: opacity 0.2s ease;
}

    .resize-handle:hover[b-5alylajixc] {
        background: rgba(255, 255, 255, 0.4);
    }

/* --- MERGED resize-left & resize-right --- */
/* The second set of rules overrode the first set completely. */
.resize-left[b-5alylajixc] {
    left: 0;
    border-radius: 0 4px 4px 0;
}

.resize-right[b-5alylajixc] {
    right: 0;
    border-radius: 4px 0 0 4px;
}

/* Selection preview popup */
.selection-preview[b-5alylajixc] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1e293b;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: slideUp-b-5alylajixc 0.3s ease-out;
}

.selection-info[b-5alylajixc] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.selection-duration[b-5alylajixc] {
    font-weight: 600;
    font-size: 14px;
}

.selection-time[b-5alylajixc] {
    font-size: 12px;
    opacity: 0.8;
}

/* Work type indicators */
.worktype-indicator[b-5alylajixc] {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.worktype-color[b-5alylajixc] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.worktype-info[b-5alylajixc] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.worktype-name[b-5alylajixc] {
    font-weight: 500;
    color: #1e293b;
}

.worktype-desc[b-5alylajixc] {
    color: #64748b;
    font-size: 12px;
}

.check-mark[b-5alylajixc] {
    position: absolute;
    right: -20px;
    color: #10b981;
    font-weight: bold;
}

.interval-selected-indicator[b-5alylajixc] {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.delete-icon[b-5alylajixc] {
    margin-right: 4px;
}

/* ==========================================================================
   Utility Styles
   ========================================================================== */

/* Disable text selection on various elements */
.interval-content[b-5alylajixc],
.interval-text[b-5alylajixc],
.employee-name[b-5alylajixc],
.employee-badge[b-5alylajixc],
.gantt-table[b-5alylajixc],
.gantt-table *[b-5alylajixc] {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* ==========================================================================
   Responsive & Print Styles
   ========================================================================== */

@media (max-width: 768px) {
    .gantt-container[b-5alylajixc] {
        border-radius: 0;
        box-shadow: none;
    }

    .gantt-header-controls[b-5alylajixc] {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .employee-column-header[b-5alylajixc] {
        width: 150px;
        min-width: 150px;
    }

    .employee-avatar[b-5alylajixc] {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .context-menu[b-5alylajixc] {
        min-width: 250px;
    }
}

@media print {
    .gantt-container[b-5alylajixc] {
        box-shadow: none;
        border: 1px solid #000;
    }

    .context-menu[b-5alylajixc],
    .selection-preview[b-5alylajixc] {
        display: none !important;
    }
}

/* ==========================================================================
   Dark Mode Support
   ========================================================================== */

@media (prefers-color-scheme: dark) {
    .gantt-container[b-5alylajixc] {
        background: var(--background-color);
        border-color: var(--border-color);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .gantt-table[b-5alylajixc] {
        background: var(--background-color);
    }

    .gantt-loading[b-5alylajixc] {
        color: var(--text-color);
    }

    .loading-spinner[b-5alylajixc] {
        border-color: var(--border-color);
        border-top-color: var(--primary-color);
    }

    .empty-state[b-5alylajixc] {
        color: var(--text-color);
    }

    .empty-state p[b-5alylajixc] {
        color: var(--text-color);
    }

    .empty-state small[b-5alylajixc] {
        color: #9ca3af;
    }

    .gantt-header-controls[b-5alylajixc] {
        background: linear-gradient(135deg, var(--hover-color) 0%, var(--background-color) 100%);
    }

    .date-info[b-5alylajixc],
    .time-range[b-5alylajixc] {
        color: var(--text-color);
    }

    .gantt-row:hover[b-5alylajixc] {
        background-color: var(--hover-color);
    }

    .gantt-row.employee-selected[b-5alylajixc] {
        background-color: rgba(54, 116, 181, 0.2);
    }

    .gantt-row.employee-selected .employee-info[b-5alylajixc] {
        background-color: rgba(54, 116, 181, 0.2);
    }

    .gantt-row.gantt-disabled .timeline-cell.empty-cell:hover[b-5alylajixc] {
        background: transparent !important;
    }

    .employee-info[b-5alylajixc] {
        background: var(--background-color);
        border-right-color: var(--border-color);
        border-bottom-color: var(--border-color);
    }

    .employee-name[b-5alylajixc] {
        color: var(--text-color);
    }

    .employee-houre[b-5alylajixc] {
        color: var(--text-color);
    }

    .employee-badge[b-5alylajixc] {
        color: #9ca3af;
    }

    .hours-indicator[b-5alylajixc] {
        background: rgba(54, 116, 181, 0.2);
        color: var(--primary-color);
    }

    .timeline-cell[b-5alylajixc] {
        border-right-color: var(--border-color);
        border-bottom-color: var(--border-color);
    }

    .empty-cell[b-5alylajixc] {
        background: var(--background-color);
    }

    .empty-cell:hover[b-5alylajixc] {
        background: var(--hover-color);
    }

    .cell-blocked[b-5alylajixc] {
        background: rgba(239, 68, 68, 0.2);
    }

    .interval-cell[b-5alylajixc] {
        background: var(--hover-color);
    }

    .interval-content[b-5alylajixc] {
        color: var(--text-color);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }

    .worktype-name[b-5alylajixc] {
        color: var(--text-color);
    }

    .worktype-desc[b-5alylajixc] {
        color: #9ca3af;
    }

    .selection-preview[b-5alylajixc] {
        background: var(--background-color);
        color: var(--text-color);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }
}
/* _content/PersoneelPlanner/Components/EmployeeGanttChart/KassaClosingGanttChart.razor.rz.scp.css */
.gantt-container[b-pznm29m1k4] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    border: 1px solid #e5e7eb;
    height: 100%;
    max-height: fit-content;
    overflow: auto;
}

.gantt-table[b-pznm29m1k4] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    table-layout: fixed;
}
/* _content/PersoneelPlanner/Components/EmployeeGanttChart/Parts/EmptyTimelineCell.razor.rz.scp.css */
/* ==========================================================================
   Timeline Cells with Opening Hours Support
   ========================================================================== */

/* Base style for all timeline cells */
.timeline-cell[b-spv4284ahd] {
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    transition: all 0.15s ease;
    width: 15px;
    min-width: 15px;
    max-width: 15px;
    box-sizing: border-box;
}

    .timeline-cell:not(.cell-past-time)[b-spv4284ahd] {
        cursor: pointer;
    }

/* Empty cell styles */
.empty-cell[b-spv4284ahd] {
    background: #ffffff;
}

    /* Outside opening hours - subtle gray background */
    .empty-cell:not(.opening-start):not(.opening-end):not(.cell-selected)[b-spv4284ahd] {
        background: #f8f9fa;
    }

    .empty-cell:not(.cell-past-time):hover[b-spv4284ahd] {
        filter: brightness(1.1);
        cursor: pointer;
        background: #f0f9ff;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        background-color: var(--primary-color);
        opacity: .3;
    }

.timeline-cell.badged-in[b-spv4284ahd] {
    border-bottom: 3px solid red !important;
}

/* Opening hours indicators */
.timeline-cell.opening-start[b-spv4284ahd] {
    border-left: 3px solid #28a745 !important; /* Strong green border for opening start */
    position: relative;
}

.timeline-cell.opening-end[b-spv4284ahd] {
    border-right: 3px solid #28a745 !important; /* Strong green border for opening end */
    position: relative;
}

/* Add a subtle visual indicator for opening hours */
.timeline-cell.opening-start[b-spv4284ahd]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 2px;
    height: 100%;
    z-index: 1;
}

.timeline-cell.opening-end[b-spv4284ahd]::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    width: 2px;
    height: 100%;
    z-index: 1;
}

/* Other cell states */
.cell-selected[b-spv4284ahd] {
    background: #dbeafe !important;
    border: 2px solid #3b82f6 !important;
}

.timeline-cell.empty-cell.cell-selected:hover[b-spv4284ahd] {
    background: #dbeafe !important;
    border: 2px solid #3b82f6 !important;
    opacity: unset;
    transform: unset;
}

/* Selected cells within opening hours should still show the opening border */
.timeline-cell.empty-cell.cell-selected.opening-start[b-spv4284ahd] {
    border-left: 3px solid #28a745 !important;
    border-top: 2px solid #3b82f6 !important;
    border-bottom: 2px solid #3b82f6 !important;
    border-right: 2px solid #3b82f6 !important;
}

.timeline-cell.empty-cell.cell-selected.opening-end[b-spv4284ahd] {
    border-right: 3px solid #28a745 !important;
    border-top: 2px solid #3b82f6 !important;
    border-bottom: 2px solid #3b82f6 !important;
    border-left: 2px solid #3b82f6 !important;
}

.cell-potential[b-spv4284ahd] {
    background: #ecfdf5 !important;
    border: 1px dashed #10b981;
}

.cell-blocked[b-spv4284ahd] {
    background: #fef2f2;
    cursor: not-allowed;
}

/* Additional visual enhancement: subtle background pattern for opening hours */
.timeline-cell.opening-start:not(.cell-selected):not(.cell-potential)[b-spv4284ahd],
.timeline-cell.opening-end:not(.cell-selected):not(.cell-potential)[b-spv4284ahd] {
}

/* Hover effects for opening hours */
.timeline-cell.opening-start:not(.cell-past-time):hover[b-spv4284ahd],
.timeline-cell.opening-end:not(.cell-past-time):hover[b-spv4284ahd] {
    border-color: #22c55e !important;
}

/* ==========================================================================
   Dark Mode Support
   ========================================================================== */

@media (prefers-color-scheme: dark) {
    .timeline-cell[b-spv4284ahd] {
        border-right-color: var(--border-color);
        border-bottom-color: var(--border-color);
    }

    .empty-cell[b-spv4284ahd] {
        background: var(--background-color);
    }

    .empty-cell:not(.opening-start):not(.opening-end):not(.cell-selected)[b-spv4284ahd] {
        background: var(--hover-color);
    }

    .empty-cell:not(.cell-past-time):hover[b-spv4284ahd] {
        background: var(--hover-color);
        background-color: rgba(54, 116, 181, 0.3) !important;
    }

    .timeline-cell.badged-in[b-spv4284ahd] {
        border-bottom-color: #f87171 !important;
    }

    .timeline-cell.opening-start[b-spv4284ahd] {
        border-left-color: #10b981 !important;
    }

    .timeline-cell.opening-end[b-spv4284ahd] {
        border-right-color: #10b981 !important;
    }

    .cell-selected[b-spv4284ahd] {
        background: rgba(59, 130, 246, 0.3) !important;
        border-color: #3b82f6 !important;
    }

    .timeline-cell.empty-cell.cell-selected:hover[b-spv4284ahd] {
        background: rgba(59, 130, 246, 0.3) !important;
        border-color: #3b82f6 !important;
    }

    .timeline-cell.empty-cell.cell-selected.opening-start[b-spv4284ahd] {
        border-left-color: #10b981 !important;
        border-top-color: #3b82f6 !important;
        border-bottom-color: #3b82f6 !important;
        border-right-color: #3b82f6 !important;
    }

    .timeline-cell.empty-cell.cell-selected.opening-end[b-spv4284ahd] {
        border-right-color: #10b981 !important;
        border-top-color: #3b82f6 !important;
        border-bottom-color: #3b82f6 !important;
        border-left-color: #3b82f6 !important;
    }

    .cell-potential[b-spv4284ahd] {
        background: rgba(16, 185, 129, 0.2) !important;
        border-color: #10b981;
    }

    .cell-blocked[b-spv4284ahd] {
        background: rgba(239, 68, 68, 0.2);
    }

    .timeline-cell.opening-start:not(.cell-past-time):hover[b-spv4284ahd],
    .timeline-cell.opening-end:not(.cell-past-time):hover[b-spv4284ahd] {
        border-color: #10b981 !important;
    }
}
/* _content/PersoneelPlanner/Components/EmployeeGanttChart/Parts/GanttChartHeader.razor.rz.scp.css */
thead[b-pg6d4dn1id] {
    position: sticky;
    top: 0;
    z-index: 10;
}

/* --- MAIN HOUR ROW --- */
.gantt-header[b-pg6d4dn1id] {
    background-color: var(--primary-color);
    color: white;
}

.employee-column-header[b-pg6d4dn1id] {
    background: var(--primary-color);
    text-align: center;
    border-right: 1px solid white;
    position: sticky;
    left: 0;
    z-index: 11;
    width: 150px;
}

.employee-header-content span[b-pg6d4dn1id] {
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
}

.hour-header[b-pg6d4dn1id] {
    padding: 5px 8px;
    text-align: left;
    border-right: 1px solid white;
    font-weight: 600;
    font-size: 14px;
    min-width: 60px;
}

/* --- QUARTER HOUR / STAFF COUNT ROW --- */
.quarter-header[b-pg6d4dn1id] {
    background: #f8fafc; /* Lighter background for the data row */
}

.quarter-spacer[b-pg6d4dn1id] {
    background: #f8fafc;
    width: 150px;
    min-width: 150px;
    font-size: 12px;
    color: #64748b;
    border-right: 1px solid #e2e8f0;
    position: sticky;
    left: 0;
    z-index: 8;
}

.quarter-cell[b-pg6d4dn1id] {
    padding: 4px 0;
    text-align: center;
    font-size: 13px; /* Slightly larger for the count */
    font-weight: 600; /* Bolder for readability */
    color: #475569;
    border-right: 1px dotted #e2e8f0;
    width: 15px;
    min-width: 15px;
    max-width: 15px;
}

.gantt-header-component .quarter-cell.is-uncovered[b-pg6d4dn1id] {
    border-bottom: 3px solid #dc3545; /* Red for uncovered hours */
    color: #dc3545;
}

.gantt-header-component .quarter-cell.is-covered[b-pg6d4dn1id] {
    border-bottom: 3px solid #28a745; /* Green for covered hours */
    color: #166534; /* Darker green for contrast */
}

.gantt-header-component .quarter-cell.is-closed[b-pg6d4dn1id] {
    background-color: #f1f5f9; /* Subtle background for closed hours */
    color: #cbd5e1; /* Faded text color */
}

.staff-count-row[b-pg6d4dn1id] {
    background-color: #f8fafc;
    height: 28px;
}

.staff-count-spacer[b-pg6d4dn1id] {
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    position: sticky;
    left: 0;
    z-index: 8;
    text-align: center;
}

.staffing-icon[b-pg6d4dn1id] {
    width: 18px;
    height: 18px;
    color: #64748b;
}

.staff-count-cell[b-pg6d4dn1id] {
    text-align: center;
    font-weight: 700;
    font-size: 11px;
    border-right: 1px dotted #e2e8f0;
}

    .staff-count-cell.is-uncovered[b-pg6d4dn1id] {
        color: #dc3545;
    }

    .staff-count-cell.is-covered[b-pg6d4dn1id] {
        color: #166534;
    }

    .staff-count-cell.is-closed[b-pg6d4dn1id] {
        color: #cbd5e1;
    }

/* --- ROW 3: QUARTER MARKER ROW --- */
.quarter-header[b-pg6d4dn1id] {
    background: #f1f5f9;
}

.quarter-spacer[b-pg6d4dn1id] {
    background: #f1f5f9;
    text-align: center;
    border-right: 1px solid #e2e8f0;
    position: sticky;
    left: 0;
    z-index: 8;
    padding: 5px;
}

.quarter-cell[b-pg6d4dn1id] {
    padding: 2px 0;
    text-align: center;
    font-size: 11px;
    color: #94a3b8;
    border-right: 1px dotted #e2e8f0;
    width: 15px;
    min-width: 15px;
    max-width: 15px;
}

/* Apply opening hours border to the staff-count-cell for better visibility */
.staff-count-cell.is-uncovered[b-pg6d4dn1id] {
    border-bottom: 3px solid #fecaca; /* Light Red */
}

.staff-count-cell.is-covered[b-pg6d4dn1id] {
    border-bottom: 3px solid #bbf7d0; /* Light Green */
}

/* ==========================================================================
   Dark Mode Support
   ========================================================================== */

@media (prefers-color-scheme: dark) {
    .gantt-header[b-pg6d4dn1id] {
        background-color: var(--primary-color);
        color: var(--primary-text-color);
    }

    .employee-column-header[b-pg6d4dn1id] {
        background: var(--primary-color);
        border-right-color: var(--border-color);
    }

    .employee-header-content span[b-pg6d4dn1id] {
        color: var(--primary-text-color);
    }

    .hour-header[b-pg6d4dn1id] {
        border-right-color: var(--border-color);
        color: var(--primary-text-color);
    }

    .quarter-header[b-pg6d4dn1id] {
        background: var(--hover-color);
    }

    .quarter-spacer[b-pg6d4dn1id] {
        background: var(--hover-color);
        color: var(--text-color);
        border-right-color: var(--border-color);
    }

    .quarter-cell[b-pg6d4dn1id] {
        color: var(--text-color);
        border-right-color: var(--border-color);
    }

    .staff-count-row[b-pg6d4dn1id] {
        background-color: var(--hover-color);
    }

    .staff-count-spacer[b-pg6d4dn1id] {
        background: var(--hover-color);
        border-right-color: var(--border-color);
    }

    .staffing-icon[b-pg6d4dn1id] {
        color: var(--text-color);
    }

    .staff-count-cell[b-pg6d4dn1id] {
        border-right-color: var(--border-color);
    }

    .staff-count-cell.is-uncovered[b-pg6d4dn1id] {
        color: #f87171;
        border-bottom-color: rgba(239, 68, 68, 0.3);
    }

    .staff-count-cell.is-covered[b-pg6d4dn1id] {
        color: #10b981;
        border-bottom-color: rgba(16, 185, 129, 0.3);
    }

    .staff-count-cell.is-closed[b-pg6d4dn1id] {
        color: #6b7280;
    }

    .gantt-header-component .quarter-cell.is-uncovered[b-pg6d4dn1id] {
        border-bottom-color: #f87171;
        color: #f87171;
    }

    .gantt-header-component .quarter-cell.is-covered[b-pg6d4dn1id] {
        border-bottom-color: #10b981;
        color: #10b981;
    }

    .gantt-header-component .quarter-cell.is-closed[b-pg6d4dn1id] {
        background-color: var(--background-color);
        color: #6b7280;
    }
}
/* _content/PersoneelPlanner/Components/EmployeeGanttChart/Parts/GanttChartRow.razor.rz.scp.css */
tr.gantt-row-disabled[b-cwbxx5mmse] {
    background-color: #f8f9fa;
    opacity: 0.7;
}
/* _content/PersoneelPlanner/Components/EmployeeGanttChart/Parts/GanttChartRowGroupHeader.razor.rz.scp.css */
.gantt-row-group-header td[b-wcm6b37kta] {
    background-color: #f8f9fa; /* A light grey background */
    font-weight: bold;
    padding: 8px 12px;
    border-bottom: 2px solid #dee2e6; /* A solid border to separate groups */
    color: #495057;
    position: sticky;
    left: 0;
    z-index: 2; /* Ensures it stays above grid lines but below main header */
}
/* _content/PersoneelPlanner/Components/EmployeeGanttChart/Parts/InfoCell.razor.rz.scp.css */
.employee-info[b-m9nui0pzwp] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 16px;
    background: #ffffff;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    left: 0;
    z-index: 5;
    cursor: pointer;
    pointer-events: all;
}

.employee-details[b-m9nui0pzwp] {
    flex: 1;
    min-width: 0;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
}

.employee-name[b-m9nui0pzwp] {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.employee-hours-icon[b-m9nui0pzwp] {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #ecfdf5;
    color: var(--primary-color);
    padding: 0px 2px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

.employee-selected[b-m9nui0pzwp] {
    background-color: #eff6ff;
    border-left: 4px solid #3b82f6;
}

/* ==========================================================================
   Dark Mode Support
   ========================================================================== */

@media (prefers-color-scheme: dark) {
    .employee-info[b-m9nui0pzwp] {
        background: var(--background-color);
        border-right-color: var(--border-color);
        border-bottom-color: var(--border-color);
    }

    .employee-name[b-m9nui0pzwp] {
        color: var(--text-color);
    }

    .employee-hours-icon[b-m9nui0pzwp] {
        background: rgba(16, 185, 129, 0.2);
        color: #10b981;
        border-color: #10b981;
    }

    .employee-selected[b-m9nui0pzwp] {
        background-color: rgba(54, 116, 181, 0.2);
        border-left-color: var(--primary-color);
    }
}
/* _content/PersoneelPlanner/Components/EmployeeGanttChart/Parts/IntervalCell.razor.rz.scp.css */
/* ==========================================================================
   Intervals (Geplande blokken)
   ========================================================================== */

/* Basisstijl voor alle cellen in de tijdlijn */
.timeline-cell[b-5wvoloz3cx] {
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    cursor: pointer;
    transition: all 0.15s ease;
    width: 15px;
    min-width: 15px;
    max-width: 15px;
    box-sizing: border-box;
}

/* Basisstijl voor een interval-cel */
.interval-cell[b-5wvoloz3cx] {
    background: #e2e8f0; /* Standaard achtergrond, wordt overschreven door inline style */
    border: none;
    cursor: pointer;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    /* --- States en Modifiers --- */

    .interval-cell.dragging[b-5wvoloz3cx] {
        opacity: 0.7;
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        cursor: grabbing !important;
    }

    .interval-cell.other-store[b-5wvoloz3cx] {
        background-image: repeating-linear-gradient( 34.8deg, #856404 0, transparent 1px, transparent 6px) !important;
    }

    .interval-cell.interval-disabled[b-5wvoloz3cx] {
        cursor: not-allowed;
    }

        .interval-cell.interval-disabled:hover[b-5wvoloz3cx] {
            filter: none;
            cursor: not-allowed;
        }

.interval-resizing[b-5wvoloz3cx] { /* Deze class wordt op de TR gezet, maar beïnvloedt de cel */
    opacity: 0.8;
    transform: scale(1.02);
    z-index: 4;
}

.interval-cell.interval-resizing[b-5wvoloz3cx] {
    border: 2px solid #10b981;
    cursor: ew-resize !important;
}

/* Geselecteerd */
.interval-selected:not(.dragging)[b-5wvoloz3cx] {
    cursor: grab;
}

.interval-cell.interval-selected.interval-start[b-5wvoloz3cx] {
    border: 2px solid #1d4ed8 !important;
    border-right: none !important;
}

.interval-cell.interval-selected.interval-middle[b-5wvoloz3cx] {
    border: 2px solid #1d4ed8 !important;
    border-right: none !important;
    border-left: none !important;
}

.interval-cell.interval-selected.interval-end[b-5wvoloz3cx] {
    border: 2px solid #1d4ed8 !important;
    border-left: none !important;
}

.interval-cell.badged-in[b-5wvoloz3cx] {
    border-bottom: 3px solid red !important;
}

/* Gekopieerd (voor plakken preview) */
.interval-cell.interval-copy.interval-start[b-5wvoloz3cx] {
    border: 2px dashed #1d4ed8;
    border-right: none;
}

.interval-cell.interval-copy.interval-middle[b-5wvoloz3cx] {
    border: 2px dashed #1d4ed8;
    border-right: none;
    border-left: none;
}

.interval-cell.interval-copy.interval-end[b-5wvoloz3cx] {
    border: 2px dashed #1d4ed8;
    border-left: none;
}

/* --- Positionele randen --- */

.interval-start[b-5wvoloz3cx] {
    border-left: 2px solid rgba(0, 0, 0, 0.2);
}

.interval-end[b-5wvoloz3cx] {
    border-right: 2px solid rgba(0, 0, 0, 0.2);
}

.interval-single[b-5wvoloz3cx] {
    border-left: 2px solid rgba(0, 0, 0, 0.2);
    border-right: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

/* --- Interval Content (tekst binnenin) --- */

.interval-content[b-5wvoloz3cx] {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
    white-space: nowrap;
    overflow: visible;
    color: black;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
    height: 100%;
    padding: 4px 2px;
    min-width: 0;
}

    /* Variaties op basis van grootte */
    .interval-content.short[b-5wvoloz3cx] {
        padding: 0px 1px;
        text-align: center;
    }

    .interval-content.medium[b-5wvoloz3cx] {
        padding: 0px 2px;
    }

    .interval-content.long[b-5wvoloz3cx] {
        padding: 0px 12px;
    }

.interval-time[b-5wvoloz3cx] {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 500;
}

.interval-description[b-5wvoloz3cx] {
    font-size: 11px;
    opacity: 0.8;
    line-height: 1.2;
    margin-top: 2px;
    text-transform: capitalize;
}

    /* Verberg tekst op kleine intervallen */
    .interval-time.short[b-5wvoloz3cx],
    .interval-description.short[b-5wvoloz3cx] {
        display: none;
    }

.interval-time.medium[b-5wvoloz3cx] {
    font-size: 9px;
}

/* --- Resize Handvatten --- */

.resize-handle[b-5wvoloz3cx] {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    opacity: 1;
    width: 8px;
    cursor: ew-resize;
    background: rgba(255, 255, 255, 0.2);
    transition: opacity 0.2s ease;
}

    .resize-handle:hover[b-5wvoloz3cx] {
        background: rgba(255, 255, 255, 0.4);
    }

.resize-left[b-5wvoloz3cx] {
    left: 0;
    border-radius: 0 4px 4px 0;
}

.resize-right[b-5wvoloz3cx] {
    right: 0;
    border-radius: 4px 0 0 4px;
}

/* --- Utility --- */

.interval-content[b-5wvoloz3cx] {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Selected cells within opening hours should still show the opening border */
.timeline-cell.empty-cell.cell-selected.opening-start[b-5wvoloz3cx] {
    border-left: 3px solid #28a745 !important;
    border-top: 2px solid #3b82f6 !important;
    border-bottom: 2px solid #3b82f6 !important;
    border-right: 2px solid #3b82f6 !important;
}

.timeline-cell.empty-cell.cell-selected.opening-end[b-5wvoloz3cx] {
    border-right: 3px solid #28a745 !important;
    border-top: 2px solid #3b82f6 !important;
    border-bottom: 2px solid #3b82f6 !important;
    border-left: 2px solid #3b82f6 !important;
}

.cell-potential[b-5wvoloz3cx] {
    background: #ecfdf5 !important;
    border: 1px dashed #10b981;
}

.cell-blocked[b-5wvoloz3cx] {
    background: #fef2f2;
    cursor: not-allowed;
}

/* ==========================================================================
   Timeline Cells with Opening Hours Support
   ========================================================================== */

.timeline-cell.opening-start[b-5wvoloz3cx] {
    border-left: 3px solid #28a745 !important; /* Strong green border for opening start */
    position: relative;
}

.timeline-cell.opening-end[b-5wvoloz3cx] {
    border-right: 3px solid #28a745 !important; /* Strong green border for opening end */
    position: relative;
}

/* Add a subtle visual indicator for opening hours */
.timeline-cell.opening-start[b-5wvoloz3cx]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 2px;
    height: 100%;
    z-index: 1;
}

.timeline-cell.opening-end[b-5wvoloz3cx]::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    width: 2px;
    height: 100%;
    z-index: 1;
}

/* Selected cells within opening hours should still show the opening border */
.timeline-cell.empty-cell.cell-selected.opening-start[b-5wvoloz3cx] {
    border-left: 3px solid #28a745 !important;
    border-top: 2px solid #3b82f6 !important;
    border-bottom: 2px solid #3b82f6 !important;
    border-right: 2px solid #3b82f6 !important;
}

.timeline-cell.empty-cell.cell-selected.opening-end[b-5wvoloz3cx] {
    border-right: 3px solid #28a745 !important;
    border-top: 2px solid #3b82f6 !important;
    border-bottom: 2px solid #3b82f6 !important;
    border-left: 2px solid #3b82f6 !important;
}

/* ==========================================================================
   Dark Mode Support
   ========================================================================== */

@media (prefers-color-scheme: dark) {
    .timeline-cell[b-5wvoloz3cx] {
        border-right-color: var(--border-color);
        border-bottom-color: var(--border-color);
    }

    .interval-cell[b-5wvoloz3cx] {
        background: var(--hover-color); /* Default background for intervals */
    }

    .interval-content[b-5wvoloz3cx] {
        color: var(--text-color);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }

    .interval-cell.badged-in[b-5wvoloz3cx] {
        border-bottom-color: #f87171 !important;
    }

    .interval-start[b-5wvoloz3cx] {
        border-left-color: rgba(255, 255, 255, 0.3);
    }

    .interval-end[b-5wvoloz3cx] {
        border-right-color: rgba(255, 255, 255, 0.3);
    }

    .interval-single[b-5wvoloz3cx] {
        border-left-color: rgba(255, 255, 255, 0.3);
        border-right-color: rgba(255, 255, 255, 0.3);
    }

    .timeline-cell.opening-start[b-5wvoloz3cx] {
        border-left-color: #10b981 !important;
    }

    .timeline-cell.opening-end[b-5wvoloz3cx] {
        border-right-color: #10b981 !important;
    }

    .timeline-cell.empty-cell.cell-selected.opening-start[b-5wvoloz3cx] {
        border-left-color: #10b981 !important;
        border-top-color: #3b82f6 !important;
        border-bottom-color: #3b82f6 !important;
        border-right-color: #3b82f6 !important;
    }

    .timeline-cell.empty-cell.cell-selected.opening-end[b-5wvoloz3cx] {
        border-right-color: #10b981 !important;
        border-top-color: #3b82f6 !important;
        border-bottom-color: #3b82f6 !important;
        border-left-color: #3b82f6 !important;
    }

    .cell-potential[b-5wvoloz3cx] {
        background: rgba(16, 185, 129, 0.2) !important;
        border-color: #10b981;
    }

    .cell-blocked[b-5wvoloz3cx] {
        background: rgba(239, 68, 68, 0.2);
    }

    .resize-handle[b-5wvoloz3cx] {
        background: rgba(255, 255, 255, 0.3);
    }

    .resize-handle:hover[b-5wvoloz3cx] {
        background: rgba(255, 255, 255, 0.5);
    }
}
/* _content/PersoneelPlanner/Components/EmployeeGanttChart/Parts/RightClickMenu.razor.rz.scp.css */
/* ==========================================================================
   Keyframes
   ========================================================================== */

@keyframes contextMenuShow-b-3au7z3q2ox {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-5px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes submenuSlide-b-3au7z3q2ox {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        max-height: 200px; /* Increased from 120px */
        transform: translateY(0);
    }
}

/* ==========================================================================
   Main Context Menu Container
   ========================================================================== */

.context-menu[b-3au7z3q2ox] {
    position: fixed;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    min-width: 220px;
    max-width: 300px;
    max-height: 400px;
    overflow-y: auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    animation: contextMenuShow-b-3au7z3q2ox 0.15s ease-out;
    backdrop-filter: blur(10px);
}

/* ==========================================================================
   Context Menu Header
   ========================================================================== */

.context-menu-header[b-3au7z3q2ox] {
    padding: 12px 16px 8px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
    border-radius: 8px 8px 0 0;
}

    .context-menu-header.error[b-3au7z3q2ox] {
        background: #fef2f2;
        color: #dc2626;
        border-bottom-color: #fecaca;
    }

.context-menu-header-title[b-3au7z3q2ox] {
    display: flex;
    justify-content: space-between;
}

.context-menu-header span[b-3au7z3q2ox] {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.context-menu-header small[b-3au7z3q2ox] {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 2px;
}

/* ==========================================================================
   Menu Sections & Items
   ========================================================================== */

.context-menu-section[b-3au7z3q2ox] {
    padding: 8px 0;
}

.context-menu-separator[b-3au7z3q2ox] {
    height: 1px;
    background: #e5e7eb;
    margin: 4px 0;
}

.context-menu-label[b-3au7z3q2ox] {
    padding: 8px 16px 4px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.context-menu-item[b-3au7z3q2ox] {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.15s ease;
    color: #333;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

    .context-menu-item:hover[b-3au7z3q2ox] {
        background-color: #f3f4f6;
        color: #111;
    }

    .context-menu-item:active[b-3au7z3q2ox] {
        background-color: #e5e7eb;
    }

    /* Item States & Variants */
    .context-menu-item.disabled[b-3au7z3q2ox] {
        color: #9ca3af;
        cursor: not-allowed;
        background: #f9fafb;
    }

        .context-menu-item.disabled:hover[b-3au7z3q2ox] {
            background: #f9fafb;
            color: #9ca3af;
        }

    .context-menu-item.current-worktype[b-3au7z3q2ox] {
        background-color: #eff6ff;
        color: #1d4ed8;
    }

        .context-menu-item.current-worktype:hover[b-3au7z3q2ox] {
            background-color: #dbeafe;
        }

    .context-menu-item.delete-item[b-3au7z3q2ox] {
        color: #dc2626;
        border-top: 1px solid #f0f0f0;
        margin-top: 4px;
    }

        .context-menu-item.delete-item:hover[b-3au7z3q2ox] {
            background-color: #fef2f2;
            color: #b91c1c;
        }

/* Specific item hover colors */
.copy-item:hover[b-3au7z3q2ox] {
    color: #10b981;
}

.delete-item:hover[b-3au7z3q2ox] {
    color: #ef4444;
}

.paste-item:hover[b-3au7z3q2ox] {
    color: #3b82f6;
}

/* ==========================================================================
   Submenu Styles - FIXED
   ========================================================================== */

.worktype-with-submenu[b-3au7z3q2ox] {
    position: relative;
}

.worktype-parent[b-3au7z3q2ox] {
    position: relative;
}

    .worktype-parent.submenu-open[b-3au7z3q2ox] {
        background-color: #f3f4f6;
    }

        .worktype-parent.submenu-open .submenu-arrow i[b-3au7z3q2ox] {
            transform: rotate(90deg);
        }

.submenu-arrow[b-3au7z3q2ox] {
    margin-left: auto;
    padding-left: 8px;
    color: #9ca3af;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.submenu[b-3au7z3q2ox] {
    background: #f8fafc;
    border-left: 2px solid #e2e8f0;
    overflow: hidden; /* CRITICAL: This was missing */
    animation: submenuSlide-b-3au7z3q2ox 0.2s ease-out forwards; /* Added 'forwards' */
    /* Remove the max-height and opacity from here since they're handled by animation */
}

.submenu-item[b-3au7z3q2ox] {
    padding: 6px 16px 6px 12px;
    font-size: 13px;
    background: transparent;
    white-space: nowrap; /* Prevent wrapping during animation */
}

    .submenu-item:hover[b-3au7z3q2ox] {
        background-color: #e2e8f0;
    }

.submenu-icon[b-3au7z3q2ox] {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: #6b7280;
    font-size: 12px;
}

/* ==========================================================================
   Worktype Indicator & Icons
   ========================================================================== */

.worktype-indicator[b-3au7z3q2ox] {
    display: flex;
    align-items: center;
    margin-right: 12px;
    position: relative;
    min-width: 24px;
}

.worktype-color[b-3au7z3q2ox] {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.check-mark[b-3au7z3q2ox] {
    position: absolute;
    right: -8px;
    top: -2px;
    font-size: 10px;
    color: #16a34a;
    font-weight: bold;
    background: #fff;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.worktype-info[b-3au7z3q2ox] {
    flex: 1;
    min-width: 0;
}

.worktype-desc[b-3au7z3q2ox] {
    color: #6b7280;
    font-size: 12px;
    margin-top: 1px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.button-container[b-3au7z3q2ox] {
    /* This class was empty, left here as a placeholder */
}

.button-title[b-3au7z3q2ox] {
    font-weight: 600;
    color: #374151;
    margin-right: 0.5rem;
}

.icon-button[b-3au7z3q2ox] {
    border: none;
    background: none;
    color: #6b7280;
    font-size: .8rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

    .icon-button:hover[b-3au7z3q2ox] {
        background-color: #f3f4f6;
    }

    .icon-button:disabled[b-3au7z3q2ox] {
        opacity: 0.4;
        cursor: not-allowed;
        background-color: transparent;
        color: #9ca3af;
    }

/* ==========================================================================
   Custom Scrollbar
   ========================================================================== */

.context-menu[b-3au7z3q2ox]::-webkit-scrollbar {
    width: 6px;
}

.context-menu[b-3au7z3q2ox]::-webkit-scrollbar-track {
    background: transparent;
}

.context-menu[b-3au7z3q2ox]::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

    .context-menu[b-3au7z3q2ox]::-webkit-scrollbar-thumb:hover {
        background: #9ca3af;
    }

/* ==========================================================================
   Media Queries (Dark Mode & Responsive)
   ========================================================================== */

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .context-menu[b-3au7z3q2ox] {
        background: #1f2937;
        border-color: #374151;
        color: #f9fafb;
    }

    .context-menu-header[b-3au7z3q2ox] {
        background: #111827;
        border-bottom-color: #374151;
    }

    .context-menu-item[b-3au7z3q2ox] {
        color: #f9fafb;
    }

        .context-menu-item:hover[b-3au7z3q2ox] {
            background-color: #374151;
        }

        .context-menu-item.delete-item[b-3au7z3q2ox] {
            color: #f87171;
        }

            .context-menu-item.delete-item:hover[b-3au7z3q2ox] {
                background-color: #450a0a;
            }

    .submenu[b-3au7z3q2ox] {
        background: #111827;
        border-left-color: #4b5563;
    }

    .submenu-item:hover[b-3au7z3q2ox] {
        background-color: #374151;
    }

    .worktype-parent.submenu-open[b-3au7z3q2ox] {
        background-color: #374151;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .context-menu[b-3au7z3q2ox] {
        min-width: 200px;
        max-width: 280px;
        font-size: 16px;
    }

    .context-menu-item[b-3au7z3q2ox] {
        padding: 12px 16px;
    }

    .context-menu-header[b-3au7z3q2ox] {
        padding: 16px 16px 12px;
    }

    .submenu-item[b-3au7z3q2ox] {
        padding: 10px 16px 10px 12px;
    }
}
/* _content/PersoneelPlanner/Components/EmployeeGanttChart/Parts/SelectionPreview.razor.rz.scp.css */
.selection-preview[b-wyz9aqbrd4] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1e293b;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: slideUp 0.3s ease-out;
}

.selection-info[b-wyz9aqbrd4] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.selection-duration[b-wyz9aqbrd4] {
    font-weight: 600;
    font-size: 14px;
}

.selection-time[b-wyz9aqbrd4] {
    font-size: 12px;
    opacity: 0.8;
}

/* ==========================================================================
   Dark Mode Support
   ========================================================================== */

@media (prefers-color-scheme: dark) {
    .selection-preview[b-wyz9aqbrd4] {
        background: var(--background-color);
        color: var(--text-color);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        border: 1px solid var(--border-color);
    }
}
/* _content/PersoneelPlanner/Components/Graph/BarChart.razor.rz.scp.css */
h3[b-ueuadm9xua] {
    border-bottom: 2px solid;
    width: 8rem;
}

.chart[b-ueuadm9xua] {
    height: 22rem;
}
/* _content/PersoneelPlanner/Components/LanguageSelector/LanguageSelector.razor.rz.scp.css */
@media (max-width: 1401px) {
    .store-menu-bottom[b-ztzvfc7wi4] {
        flex-direction: row;
        padding: 16px;
        gap: 16px;
        border-top: none;
        background-color: transparent;
        min-height: auto;
    }

    .language-section[b-ztzvfc7wi4] {
        flex-direction: row;
        gap: 8px;
    }

    .store-menu-bottom .language-section label[b-ztzvfc7wi4] {
        display: none !important;
    }

    .language-selector[b-ztzvfc7wi4] {
        width: 100%;
        min-width: 120px;
    }

    .logout-section[b-ztzvfc7wi4] {
        width: 100%;
    }

    .logout-btn[b-ztzvfc7wi4] {
        justify-content: center;
        padding: 12px 16px;
        font-weight: 500;
        border-radius: 6px;
        transition: all 0.2s ease;
    }

        .logout-btn:hover:not(:disabled)[b-ztzvfc7wi4] {
            background-color: #c82333;
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
        }

    .logout-text[b-ztzvfc7wi4] {
        display: none;
    }
}

/* Extra small screens */
@media (max-width: 768px) {
    .store-menu-bottom[b-ztzvfc7wi4] {
        padding: 12px;
        gap: 12px;
    }

    .logout-btn[b-ztzvfc7wi4] {
        padding: 10px 14px;
    }

    .logout-text[b-ztzvfc7wi4] {
        font-size: 14px;
    }
}

/* Animation for hamburger menu appearance */
@media (max-width: 1401px) {
    .store-menu-bottom[b-ztzvfc7wi4] {
        animation: slideIn-b-ztzvfc7wi4 0.3s ease-out;
    }
}

@keyframes slideIn-b-ztzvfc7wi4 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-color-scheme: dark) {
    @media (min-width: 1401px) {
        .store-menu-bottom[b-ztzvfc7wi4] {
            background-color: #1f2937;
            color: var(--text-color);
            border-top: 1px solid var(--border-color);
        }
    }
}
/* _content/PersoneelPlanner/Components/Navigation/NavigationButton.razor.rz.scp.css */
.nav-button[b-6daddrviny] {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
    cursor: pointer;
    color: #333;
}

    .nav-button:hover[b-6daddrviny] {
        background-color: #f0f0f0; /* A subtle grey for light mode hover */
    }

.nav-text[b-6daddrviny] {
    font-weight: 500;
}

.plannerBlackIcon[b-6daddrviny] {
    height: 16px;
}

/* --- Dark Mode --- */
@media (prefers-color-scheme: dark) {
    /* 1. Set the default icon color to be light */
    .nav-button[b-6daddrviny] {
        color: #d1d5db; /* A nice off-white that's easy on the eyes */
    }

        /* 2. Define a clear and contrasting hover state for dark mode */
        .nav-button:hover[b-6daddrviny] {
            background-color: #374151; /* A common dark-mode hover background */
            color: white; /* Make the icon pure white on hover */
        }

        /* 3. Invert the black PNG image to make it white */
        .nav-button .plannerBlackIcon[b-6daddrviny] {
            filter: brightness(0) invert(1);
        }
}
/* _content/PersoneelPlanner/Components/Personeel/Personeel.razor.rz.scp.css */
table[b-m4iwl4nj5e] {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* fix layout so widths don't jump */
}

th.checkbox-header[b-m4iwl4nj5e] {
    width: 5%; /* small checkbox column */
}

th.nummer-header[b-m4iwl4nj5e] {
    width: 10%; /* badgenumber and basis columns */
}

th.badge-header[b-m4iwl4nj5e] {
    width: 20%; /* badgenumber and basis columns */
}

th.winkel-header[b-m4iwl4nj5e] {
    width: 30%; /* store column - 2x more space than nummer columns */
}

th.naam-header[b-m4iwl4nj5e] {
    width: auto; /* naam takes remaining space */
}

/* No explicit widths for other columns, so they share remaining space */
th[b-m4iwl4nj5e], td[b-m4iwl4nj5e] {
    border: 1px solid var(--border-color);
    padding: 8px;
    text-align: left;
    overflow: visible; /* Changed from hidden to visible for autocomplete */
    white-space: nowrap; /* prevent text wrapping */
    text-overflow: ellipsis; /* show ... if text too long */
    color: var(--text-color);
    background-color: var(--background-color);
}

.checkbox-wrapper[b-m4iwl4nj5e] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Duidelijke visuele stijl voor transferred medewerkers */
tr.Transferred[b-m4iwl4nj5e] {
    background-color: #ffeeba; /* licht geel */
    color: #856404; /* donker oranje/bruin */
    font-style: italic;
    border-left: 5px solid #ffc107;
}

/* Optioneel: icon voor transferred medewerker */
tr.Transferred td:first-child[b-m4iwl4nj5e]::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 5px;
    color: #ffc107;
}

tr td:last-of-type[b-m4iwl4nj5e] {
    text-align: end;
}

/* Enhanced Autocomplete Styling */
.autocomplete-container[b-m4iwl4nj5e] {
    position: relative;
    width: 100%;
}

.autocomplete-input[b-m4iwl4nj5e] {
    width: 100%;
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: var(--background-color);
    color: var(--text-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.autocomplete-input:focus[b-m4iwl4nj5e] {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(54, 116, 181, 0.25);
    background-color: var(--hover-color);
}

.autocomplete-suggestions[b-m4iwl4nj5e] {
    position: fixed; /* Changed from absolute to fixed */
    border: 1px solid var(--border-color);
    background-color: var(--background-color);
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 9999; /* Very high z-index to ensure it's on top */
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    margin-top: 2px;
    min-width: 200px;
    animation: fadeInDown-b-m4iwl4nj5e 0.2s ease-out;
    /* Position will be set by JavaScript */
}

@keyframes fadeInDown-b-m4iwl4nj5e {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggestion-item[b-m4iwl4nj5e] {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-color);
}

.suggestion-item:last-child[b-m4iwl4nj5e] {
    border-bottom: none;
}

.suggestion-item:hover[b-m4iwl4nj5e] {
    background-color: var(--hover-color);
}

.suggestion-item:active[b-m4iwl4nj5e] {
    background-color: var(--hover-color);
    opacity: 0.8;
}

/* Add some styling for the store number and description */
.suggestion-item .store-number[b-m4iwl4nj5e] {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 8px;
}

.suggestion-item .store-description[b-m4iwl4nj5e] {
    color: var(--text-color);
    opacity: 0.7;
    flex: 1;
}

/* Modal body overflow fix - prevent scrollbar when autocomplete opens */
.modal-body[b-m4iwl4nj5e] {
    overflow-y: auto;
    position: relative;
    z-index: 1;
}

/* Ensure modal doesn't get scrollbar when autocomplete opens */
.modal-dialog[b-m4iwl4nj5e] {
    overflow: visible;
}

.modal-content[b-m4iwl4nj5e] {
    overflow: visible;
}

/* Ensure table cells with autocomplete have higher stacking context */
td:has(.autocomplete-container)[b-m4iwl4nj5e] {
    position: relative;
    z-index: 10;
    overflow: visible !important;
}

/* Alternative if :has() is not supported */
.autocomplete-cell[b-m4iwl4nj5e] {
    position: relative;
    z-index: 10;
    overflow: visible !important;
}

/* Loading state for autocomplete */
.autocomplete-loading[b-m4iwl4nj5e] {
    padding: 12px 16px;
    color: #6c757d;
    font-style: italic;
    text-align: center;
}

/* No results state */
.autocomplete-no-results[b-m4iwl4nj5e] {
    padding: 12px 16px;
    color: var(--text-color);
    opacity: 0.7;
    font-style: italic;
    text-align: center;
    background-color: var(--hover-color);
}

/* Search icon styling */
.autocomplete-container[b-m4iwl4nj5e]::before {
    content: "🔍";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

/* Hide search icon when focused */
.autocomplete-input:focus + .autocomplete-container[b-m4iwl4nj5e]::before {
    display: none;
}

/* Scrollbar styling for suggestions */
.autocomplete-suggestions[b-m4iwl4nj5e]::-webkit-scrollbar {
    width: 6px;
}

.autocomplete-suggestions[b-m4iwl4nj5e]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.autocomplete-suggestions[b-m4iwl4nj5e]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.autocomplete-suggestions[b-m4iwl4nj5e]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .autocomplete-suggestions[b-m4iwl4nj5e] {
        max-height: 150px;
        font-size: 13px;
    }

    .suggestion-item[b-m4iwl4nj5e] {
        padding: 10px 12px;
    }
}

.icon-wrapper[b-m4iwl4nj5e] {
    display: inline-block;
    position: relative;
    width: 1.25em;
    height: 1.25em;
    cursor: pointer;
}

.icon-wrapper i[b-m4iwl4nj5e] {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.2s ease;
    width: 100%;
    text-align: center;
    line-height: 1.25em;
}

.default-icon[b-m4iwl4nj5e] {
    opacity: 1;
    z-index: 1;
}

.hover-icon[b-m4iwl4nj5e] {
    opacity: 0;
    z-index: 2;
}

.icon-wrapper:hover .default-icon[b-m4iwl4nj5e] {
    opacity: 0;
}

.icon-wrapper:hover .hover-icon[b-m4iwl4nj5e] {
    opacity: 1;
}

/* ==========================================================================
   Modal Dark Mode Support
   ========================================================================== */

.modal-content[b-m4iwl4nj5e] {
    background-color: var(--background-color) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-color) !important;
}

.modal-header[b-m4iwl4nj5e] {
    background-color: var(--background-color) !important;
    border-bottom: 1px solid var(--border-color) !important;
    color: var(--text-color) !important;
}

.modal-title[b-m4iwl4nj5e] {
    color: var(--text-color) !important;
}

.modal-body[b-m4iwl4nj5e] {
    background-color: var(--background-color) !important;
    color: var(--text-color) !important;
}

.modal-footer[b-m4iwl4nj5e] {
    background-color: var(--background-color) !important;
    border-top: 1px solid var(--border-color) !important;
    color: var(--text-color) !important;
}

/* Form controls in modal */
.modal .form-select[b-m4iwl4nj5e] {
    background-color: var(--background-color) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-color) !important;
}

.modal .form-select:focus[b-m4iwl4nj5e] {
    background-color: var(--hover-color) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(54, 116, 181, 0.25) !important;
}

.modal .form-select option[b-m4iwl4nj5e] {
    background-color: var(--background-color) !important;
    color: var(--text-color) !important;
}

/* Text elements in modal */
.modal .text-muted[b-m4iwl4nj5e] {
    color: var(--text-color) !important;
    opacity: 0.6 !important;
}

/* Button styling in modal */
.modal .btn-secondary[b-m4iwl4nj5e] {
    background-color: var(--hover-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

.modal .btn-secondary:hover[b-m4iwl4nj5e] {
    background-color: var(--border-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

.modal .btn-outline-primary[b-m4iwl4nj5e] {
    background-color: transparent !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.modal .btn-outline-primary:hover[b-m4iwl4nj5e] {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-text-color) !important;
}

/* Modal backdrop - make it slightly more opaque in dark mode */
.modal-backdrop[b-m4iwl4nj5e] {
    background-color: rgba(0, 0, 0, 0.5) !important;
}
/* _content/PersoneelPlanner/Components/Personeel/PersonnelTableRow.razor.rz.scp.css */
/* Duidelijke visuele stijl voor transferred medewerkers */
tr.Transferred[b-oypvv6cl1i] {
    background-color: #ffeeba; /* licht geel */
    color: #856404; /* donker oranje/bruin */
    font-style: italic;
    border-left: 5px solid #ffc107;
}

/* Optioneel: icon voor transferred medewerker */
tr.Transferred td:first-child[b-oypvv6cl1i]::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 5px;
    color: #ffc107;
}

tr td:last-of-type[b-oypvv6cl1i] {
    text-align: end;
}

td[b-oypvv6cl1i] {
    border: 1px solid var(--border-color);
    padding: 8px;
    text-align: left;
    overflow: visible;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--text-color);
    background-color: var(--background-color);
}

.checkbox-wrapper[b-oypvv6cl1i] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.icon-wrapper[b-oypvv6cl1i] {
    display: inline-block;
    position: relative;
    width: 1.25em;
    height: 1.25em;
    cursor: pointer;
}

.icon-wrapper i[b-oypvv6cl1i] {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.2s ease;
    width: 100%;
    text-align: center;
    line-height: 1.25em;
}

.default-icon[b-oypvv6cl1i] {
    opacity: 1;
    z-index: 1;
}

.hover-icon[b-oypvv6cl1i] {
    opacity: 0;
    z-index: 2;
}

.icon-wrapper:hover .default-icon[b-oypvv6cl1i] {
    opacity: 0;
}

.icon-wrapper:hover .hover-icon[b-oypvv6cl1i] {
    opacity: 1;
}

.autocomplete-container[b-oypvv6cl1i] {
    position: relative;
    width: 100%;
}

td:has(.autocomplete-container)[b-oypvv6cl1i] {
    position: relative;
    z-index: 10;
    overflow: visible !important;
}

.autocomplete-container[b-oypvv6cl1i]::before {
    content: "🔍";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.autocomplete-input:focus + .autocomplete-container[b-oypvv6cl1i]::before {
    display: none;
}

.autocomplete-input[b-oypvv6cl1i] {
    width: 100%;
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: var(--background-color);
    color: var(--text-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.autocomplete-input:focus[b-oypvv6cl1i] {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(54, 116, 181, 0.25);
    background-color: var(--hover-color);
}

.autocomplete-suggestions[b-oypvv6cl1i] {
    position: fixed; /* Changed from absolute to fixed */
    border: 1px solid var(--border-color);
    background-color: var(--background-color);
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 9999; /* Very high z-index to ensure it's on top */
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    margin-top: 2px;
    min-width: 200px;
    animation: fadeInDown 0.2s ease-out;
    /* Position will be set by JavaScript */
}

/* Scrollbar styling for suggestions */
.autocomplete-suggestions[b-oypvv6cl1i]::-webkit-scrollbar {
    width: 6px;
}

.autocomplete-suggestions[b-oypvv6cl1i]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.autocomplete-suggestions[b-oypvv6cl1i]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.autocomplete-suggestions[b-oypvv6cl1i]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.autocomplete-no-results[b-oypvv6cl1i] {
    padding: 12px 16px;
    color: var(--text-color);
    opacity: 0.7;
    font-style: italic;
    text-align: center;
    background-color: var(--hover-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .autocomplete-suggestions[b-oypvv6cl1i] {
        max-height: 150px;
        font-size: 13px;
    }

    .suggestion-item[b-oypvv6cl1i] {
        padding: 10px 12px;
    }
}

.suggestion-item[b-oypvv6cl1i] {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-color);
}

.suggestion-item:last-child[b-oypvv6cl1i] {
    border-bottom: none;
}

.suggestion-item:hover[b-oypvv6cl1i] {
    background-color: var(--hover-color);
}

.suggestion-item:active[b-oypvv6cl1i] {
    background-color: var(--hover-color);
    opacity: 0.8;
}

/* Add some styling for the store number and description */
.suggestion-item .store-number[b-oypvv6cl1i] {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 8px;
}

.suggestion-item .store-description[b-oypvv6cl1i] {
    color: var(--text-color);
    opacity: 0.7;
    flex: 1;
}
/* _content/PersoneelPlanner/Components/Planner/MyPlanningCalendar.razor.rz.scp.css */
.calendar-container[b-mrncw0kcde] {
    max-width: 100%;
    margin: 0 auto;
    padding: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

}

.calendar-header[b-mrncw0kcde] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 0 4px;
}

.nav-button[b-mrncw0kcde] {
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

    .nav-button:hover[b-mrncw0kcde] {
        background: #e5e7eb;
    }

    .nav-button:active[b-mrncw0kcde] {
        transform: scale(0.95);
    }

.calendar-title[b-mrncw0kcde] {
    text-align: center;
    flex: 1;
    margin: 0 12px;
}

.month-year[b-mrncw0kcde] {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--text-color);
}

.month-summary[b-mrncw0kcde] {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

.today-button[b-mrncw0kcde] {
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 12px;
    transition: background 0.2s;
}

    .today-button:hover[b-mrncw0kcde] {
        background: #2563eb;
    }

.calendar-grid[b-mrncw0kcde] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.day-header[b-mrncw0kcde] {
    background: var(--hover-color);
    padding: 8px 4px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
}

.blank-day[b-mrncw0kcde] {
    background: var(--background-color);
    aspect-ratio: 1;
    min-height: 44px;
}

.day-cell[b-mrncw0kcde] {
    background: var(--hover-color);
    aspect-ratio: 1;
    min-height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
    padding: 2px;
}

    .day-cell:hover[b-mrncw0kcde] {
        background: #f3f4f6;
    }

    .day-cell.today[b-mrncw0kcde] {
        background: #dbeafe;
        color: #1d4ed8;
    }

    .day-cell.selected[b-mrncw0kcde] {
        background: #3b82f6;
        color: white;
    }

    .day-cell.has-work[b-mrncw0kcde] {
        background: #f0f9ff;
        color: var(--primary-color)
    }

    .day-cell.weekend[b-mrncw0kcde] {
        background: #fafafa;
        color: #9ca3af;
    }

    .day-cell.past-day[b-mrncw0kcde] {
        color: #9ca3af;
    }

.day-number[b-mrncw0kcde] {
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 2px;
}

.work-indicator[b-mrncw0kcde] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-bottom: 2px;
}

.work-hours[b-mrncw0kcde] {
    font-size: 9px;
    color: #6b7280;
    text-align: center;
    line-height: 1;
}

.free-indicator[b-mrncw0kcde] {
    font-size: 8px;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.day-details[b-mrncw0kcde] {
    background: var(--background-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.day-details-header[b-mrncw0kcde] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

    .day-details-header h3[b-mrncw0kcde] {
        font-size: 16px;
        font-weight: 600;
        margin: 0;
    }

.today-badge[b-mrncw0kcde] {
    background: #3b82f6;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
}

.close-button[b-mrncw0kcde] {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intervals-list[b-mrncw0kcde] {
    margin-bottom: 12px;
}

.interval-card[b-mrncw0kcde] {
    background: var(--hover-color);
    color: var(--text-color);
    border-radius: 4px;
    padding: 8px;
    margin-bottom: 8px;
}

.interval-header[b-mrncw0kcde] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.interval-time[b-mrncw0kcde] {
    font-size: 12px;
    font-weight: 500;
}

.working-badge[b-mrncw0kcde] {
    background: #10b981;
    color: white;
    font-size: 9px;
    padding: 1px 4px;
    border-radius: 3px;
    text-transform: uppercase;
}

.interval-title[b-mrncw0kcde] {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 2px;
}

.interval-type[b-mrncw0kcde] {
    font-size: 11px;
    color: #6b7280;
}

.day-summary[b-mrncw0kcde] {
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
}

.summary-item[b-mrncw0kcde] {
    font-size: 12px;
    color: #6b7280;
}

.no-work[b-mrncw0kcde] {
    text-align: center;
    padding: 16px;
    color: #6b7280;
}

.stats-grid[b-mrncw0kcde] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.stat-card[b-mrncw0kcde] {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
}

.stat-value[b-mrncw0kcde] {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.stat-label[b-mrncw0kcde] {
    font-size: 10px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legend-section[b-mrncw0kcde] {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
}

.legend-toggle[b-mrncw0kcde] {
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 0;
}

.work-types-grid[b-mrncw0kcde] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
    margin-top: 8px;
}

.work-type-item[b-mrncw0kcde] {
    display: flex;
    align-items: center;
    font-size: 11px;
    color: #374151;
}

.work-type-dot[b-mrncw0kcde] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    flex-shrink: 0;
}

.working-indicator[b-mrncw0kcde] {
    color: #10b981;
    font-size: 10px;
    margin-left: 4px;
}

/* Tablet styles */
@media (min-width: 768px) {
    .calendar-container[b-mrncw0kcde] {
        padding: 16px;
        max-width: 768px;
    }

    .month-year[b-mrncw0kcde] {
        font-size: 24px;
    }

    .month-summary[b-mrncw0kcde] {
        font-size: 14px;
    }

    .day-cell[b-mrncw0kcde] {
        min-height: 56px;
    }

    .day-number[b-mrncw0kcde] {
        font-size: 14px;
    }

    .work-hours[b-mrncw0kcde] {
        font-size: 10px;
    }

    .stats-grid[b-mrncw0kcde] {
        grid-template-columns: repeat(4, 1fr);
    }

    .day-details[b-mrncw0kcde] {
        padding: 20px;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .calendar-container[b-mrncw0kcde] {
        padding: 24px;
        max-width: 1024px;
    }

    .day-cell[b-mrncw0kcde] {
        min-height: 64px;
    }

    .calendar-grid[b-mrncw0kcde] {
        gap: 2px;
    }

    .legend-section[b-mrncw0kcde] {
        padding: 16px;
    }

    .work-types-grid[b-mrncw0kcde] {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* PDF Generation Button */
.pdf-button[b-mrncw0kcde] {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

    .pdf-button:hover[b-mrncw0kcde] {
        background: #059669;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        transform: translateY(-1px);
    }

    .pdf-button:active[b-mrncw0kcde] {
        transform: translateY(0);
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    }

    .pdf-button:disabled[b-mrncw0kcde] {
        background: #d1d5db;
        color: #6b7280;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

/* PDF Button Icon */
.pdf-button-icon[b-mrncw0kcde] {
    width: 16px;
    height: 16px;
}

/* Responsive adjustments for PDF button */
@media (min-width: 768px) {
    .pdf-button[b-mrncw0kcde] {
        width: auto;
        min-width: 200px;
        align-self: center;
        margin: 0 auto;
    }
}
/* _content/PersoneelPlanner/Components/Planner/Parts/DayCell.razor.rz.scp.css */
.day-table[b-yw2j2ocbs5] {
    width: 100%;
    height: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    text-align: center;
    cursor: pointer;
}

.monday tbody[b-yw2j2ocbs5], .monday thead[b-yw2j2ocbs5] {
    
}

.day-table th[b-yw2j2ocbs5],
.day-table td[b-yw2j2ocbs5] {
    padding: 0px;
    width: auto;
    max-height: fit-content;
    font-size: .7rem;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.agenda-text input[b-yw2j2ocbs5] {
    padding: 0px 10px;
    background-color: inherit;
    color: inherit;
    width: 100%;
    border: none;
}

.agenda-text input:focus[b-yw2j2ocbs5] {
    outline: none !important;
}

.agenda-text input:disabled[b-yw2j2ocbs5] {
    cursor: not-allowed;
}

.day-table tbody tr[b-yw2j2ocbs5] {
    border-bottom: 1px dotted black;
    height: 25px !important;
}

.day-table tbody td[b-yw2j2ocbs5] {
    border-right: 1px dotted black;
}

    .day-table tbody td:last-of-type[b-yw2j2ocbs5] {
        border-right: none;
    }

.agenda-text[b-yw2j2ocbs5] {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.day-table tbody[b-yw2j2ocbs5], .day-table thead[b-yw2j2ocbs5] {
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    border-top: 1px solid black;
}

.day-table.last tbody[b-yw2j2ocbs5], .day-table.last thead[b-yw2j2ocbs5] {
    border-right: none;
    border-bottom: 1px solid black;
    border-top: 1px solid black;
}


.day-table td.worktype[b-yw2j2ocbs5] {
    padding: 0;
}

.day-table tfoot tr td:first-child[b-yw2j2ocbs5] {
    visibility: hidden;
    border: none;
}

.day-table tfoot td[b-yw2j2ocbs5] {
    border: 1px solid #000;
}

.select[b-yw2j2ocbs5] {
    background-color: var(--primary-color);
    color: var(--primary-text-color);
}

.today[b-yw2j2ocbs5] {
    background-color: var(--today-color);
    color: var(--today-text-color);
}

.other_store[b-yw2j2ocbs5] {
    background-image: repeating-linear-gradient( 45deg, #856404 0, transparent 2px, transparent 6px) !important;
}

@-moz-document url-prefix() {
    .select[b-yw2j2ocbs5] {
        background-color: var(--primary-color);
        color: var(--primary-text-color);
        height: 5px !important;
        padding: 0px !important;
        margin: 0px !important;
    }
}

@media (max-width: 1400px) {
    .day-table.last tbody[b-yw2j2ocbs5], .day-table.last thead[b-yw2j2ocbs5] {
        border-right: 1px solid black;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .day-table[b-yw2j2ocbs5] {
        background: #1f2937;
        color: #f9fafb;
    }

    .day-table th[b-yw2j2ocbs5],
    .day-table td[b-yw2j2ocbs5] {
        border-color: #4b5563;
        color: #f9fafb;
    }

    .day-table tbody tr[b-yw2j2ocbs5] {
        border-bottom-color: #4b5563;
    }

    .day-table tbody td[b-yw2j2ocbs5] {
        border-right-color: #4b5563;
    }

    .day-table tbody[b-yw2j2ocbs5], .day-table thead[b-yw2j2ocbs5] {
        border-color: #4b5563;
    }

    .day-table.last tbody[b-yw2j2ocbs5], .day-table.last thead[b-yw2j2ocbs5] {
        border-color: #4b5563;
    }

    .day-table tfoot td[b-yw2j2ocbs5] {
        border-color: #4b5563;
    }

    .agenda-text input[b-yw2j2ocbs5] {
        background-color: #374151;
        color: #f9fafb;
    }

    .agenda-text input:disabled[b-yw2j2ocbs5] {
        background-color: #1f2937;
        color: #9ca3af;
    }

    .select[b-yw2j2ocbs5] {
        background-color: var(--primary-color);
        color: #ffffff;
    }

    .today[b-yw2j2ocbs5] {
        background-color: #f59e0b;
        color: #1f2937;
    }

    .other_store[b-yw2j2ocbs5] {
        background-image: repeating-linear-gradient(45deg, #f59e0b 0, transparent 2px, transparent 6px) !important;
    }

    @media (max-width: 1400px) {
        .day-table.last tbody[b-yw2j2ocbs5], .day-table.last thead[b-yw2j2ocbs5] {
            border-right-color: #4b5563;
        }
    }
}
/* _content/PersoneelPlanner/Components/Planner/Parts/EmployeeRow.razor.rz.scp.css */
.employee-row[b-3z1e8ws8oy] {
    display: grid;
    grid-template-columns: 155px 1fr 275px;
    
}

.employee-row:hover[b-3z1e8ws8oy] {
    background: #f8f9fa;
}

.employee-row.selected[b-3z1e8ws8oy] {
    background: #e3f2fd;
    border-color: #2196f3;
}

.employee-info[b-3z1e8ws8oy] {
    padding: 4px 6px;
    border: 1px solid black;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.employee-header[b-3z1e8ws8oy] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.name-section[b-3z1e8ws8oy] {
    flex: 1;
}

.name[b-3z1e8ws8oy] {
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.meta[b-3z1e8ws8oy] {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
}

.badge[b-3z1e8ws8oy] {
    background: #e9ecef;
    padding: 1px 3px;
    border-radius: 2px;
    font-size: 9px;
    color: #6c757d;
}

.hours[b-3z1e8ws8oy] {
    background: #d4edda;
    color: #155724;
    padding: 1px 3px;
    border-radius: 2px;
    font-size: 9px;
}

.transfer[b-3z1e8ws8oy] {
    background: #fff3cd;
    color: #856404;
    padding: 1px 3px;
    border-radius: 2px;
    font-size: 9px;
}

.actions[b-3z1e8ws8oy] {
    display: flex;
    gap: 2px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-sm[b-3z1e8ws8oy] {
    background: #f8f9fa;
    border: 1px solid #ced4da;
    padding: 2px 4px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 10px;
    color: #6c757d;
}

.btn-sm:hover:not(:disabled)[b-3z1e8ws8oy] {
    background: #e9ecef;
}

.btn-sm:disabled[b-3z1e8ws8oy] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-sm.delete:hover[b-3z1e8ws8oy] {
    color: #dc3545;
    border-color: #dc3545;
}

.btn-sm.copy:hover[b-3z1e8ws8oy] {
    color: #007bff;
    border-color: #007bff;
}

.btn-sm.paste:hover:not(:disabled)[b-3z1e8ws8oy] {
    color: #28a745;
    border-color: #28a745;
}

.shift-controls[b-3z1e8ws8oy] {
    display: flex;
    gap: 1px;
    margin-left: auto;
}

.btn-xs[b-3z1e8ws8oy] {
    background: #f8f9fa;
    border: 1px solid #ced4da;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.btn-xs:hover[b-3z1e8ws8oy] {
    background: #e9ecef;
}

.employee-week[b-3z1e8ws8oy] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: stretch;
}

.summary[b-3z1e8ws8oy] {
    padding: 4px;
    border-left: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 10px;
}

.summary-item[b-3z1e8ws8oy] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 4px;
    border-radius: 2px;
    background: #f8f9fa;
}

.summary-item.total[b-3z1e8ws8oy] {
    background: #d4edda;
    font-weight: 600;
    color: #155724;
}

.summary-item .label[b-3z1e8ws8oy] {
    font-size: 9px;
    color: #6c757d;
    text-transform: uppercase;
}

.summary-item .value[b-3z1e8ws8oy] {
    font-weight: 600;
    font-size: 10px;
}

/* Responsive */
@media (max-width: 1400px) {
    .employee-row[b-3z1e8ws8oy] {
        grid-template-columns: 100px 1fr;
    }
}

@media (max-width: 992px) {
    .employee-row[b-3z1e8ws8oy] {
        font-size: 10px;
    }

    .name[b-3z1e8ws8oy] {
        font-size: 11px;
    }
}

.employee-name[b-3z1e8ws8oy] {
    border: 1px solid black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 8px;
    max-height: 100%;
    cursor: pointer;
}

.employee-name .name[b-3z1e8ws8oy] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.employee-name .name p[b-3z1e8ws8oy] {
    margin: 0px;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.icon-button[b-3z1e8ws8oy] {
    border: none;
    background: none;
    color: #6b7280; /* Tailwind gray-500 */
    font-size: .8rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.icon-button:hover[b-3z1e8ws8oy] {
    background-color: #f3f4f6; /* light hover bg */
}

.icon-button:disabled[b-3z1e8ws8oy] {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: transparent;
    color: #9ca3af; /* Tailwind gray-400 */
}

.delete-item:hover[b-3z1e8ws8oy] {
    color: #ef4444; /* Tailwind red-500 */
}

.small-bold[b-3z1e8ws8oy] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    margin: 0;
    cursor: pointer;
}

.small-bold i[b-3z1e8ws8oy] {
    color: #856404
}

.small-bold p[b-3z1e8ws8oy] {
    margin: 0px;
}

.bottom[b-3z1e8ws8oy] {
    display: flex;
    flex-direction: row;
}

.employee-name .name .lijn[b-3z1e8ws8oy] {
    height: 100%;
    border-left: 1px solid black;
    width: 1px;
}

.employee-name .buttons[b-3z1e8ws8oy] {
    padding: 5px;
    display: flex;
    width: 100%;
    justify-content: end;
    gap: 5px;
}

.employee-name .buttons button[b-3z1e8ws8oy] {
    font-family: Arial, sans-serif;
    background-color: gray;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    user-select: none;
}

.employee-name .buttons button:first-of-type[b-3z1e8ws8oy] {
    padding-bottom: 3px;
}

.employee-name .buttons button:hover:not(:disabled)[b-3z1e8ws8oy] {
    background-color: darkgray;
}

.employee-name .buttons button:active[b-3z1e8ws8oy] {
    background-color: #555;
}

.buttons button:disabled[b-3z1e8ws8oy] {
    background-color: lightgray;
    cursor: not-allowed;
    opacity: 0.7;
}

.employee-week[b-3z1e8ws8oy] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    height: 100%;
    width: 100%;
}

.employee-grid[b-3z1e8ws8oy] {
    margin-left: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-content: center;
    align-content: center;
    align-self: start;
    margin-top: 17.8px;
}

.employee-grid .grid-item[b-3z1e8ws8oy] {
    display: flex;
    border: 1px solid black;
    height: 50px;
    padding-top: 9px;
    padding-bottom: 9px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1400px) {
    .employee-grid[b-3z1e8ws8oy] {
        display: none;
    }

    .wrapper[b-3z1e8ws8oy] {
        display: grid;
        grid-template-columns: 100px 1fr;
    }
}

.employee-table td:last-of-type[b-3z1e8ws8oy] {
    border-left: none;
}

.active[b-3z1e8ws8oy] {
    background-color: var(--primary-color);
    color: var(--primary-text-color);
}

.selected[b-3z1e8ws8oy] {
    background-color: #eff6ff;
    border-left: 4px solid #3b82f6;
}

.employee-hours-icon[b-3z1e8ws8oy] {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #ecfdf5;
    color: var(--primary-color);
    padding: 0px 2px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .employee-row[b-3z1e8ws8oy] {
        background: #1f2937;
        color: #f9fafb;
    }

    .employee-row:hover[b-3z1e8ws8oy] {
        background: #374151;
    }

    .employee-row.selected[b-3z1e8ws8oy] {
        background: #1e3a8a;
        border-color: #3b82f6;
    }

    .employee-info[b-3z1e8ws8oy] {
        border-color: #4b5563;
        background: #1f2937;
        color: #f9fafb;
    }

    .name[b-3z1e8ws8oy] {
        color: #f9fafb;
    }

    .badge[b-3z1e8ws8oy] {
        background: #374151;
        color: #d1d5db;
    }

    .hours[b-3z1e8ws8oy] {
        background: #065f46;
        color: #a7f3d0;
    }

    .transfer[b-3z1e8ws8oy] {
        background: #92400e;
        color: #fbbf24;
    }

    .btn-sm[b-3z1e8ws8oy] {
        background: #374151;
        border-color: #6b7280;
        color: #d1d5db;
    }

    .btn-sm:hover:not(:disabled)[b-3z1e8ws8oy] {
        background: #4b5563;
        color: #f9fafb;
    }

    .btn-sm.delete:hover[b-3z1e8ws8oy] {
        color: #ef4444;
        border-color: #ef4444;
        background: #7f1d1d;
    }

    .btn-sm.copy:hover[b-3z1e8ws8oy] {
        color: #3b82f6;
        border-color: #3b82f6;
        background: #1e3a8a;
    }

    .btn-sm.paste:hover:not(:disabled)[b-3z1e8ws8oy] {
        color: #10b981;
        border-color: #10b981;
        background: #064e3b;
    }

    .btn-xs[b-3z1e8ws8oy] {
        background: #374151;
        border-color: #6b7280;
        color: #d1d5db;
    }

    .btn-xs:hover[b-3z1e8ws8oy] {
        background: #4b5563;
        color: #f9fafb;
    }

    .summary[b-3z1e8ws8oy] {
        border-left-color: #4b5563;
        background: #1f2937;
    }

    .summary-item[b-3z1e8ws8oy] {
        background: #374151;
        color: #d1d5db;
    }

    .summary-item.total[b-3z1e8ws8oy] {
        background: #065f46;
        color: #a7f3d0;
    }

    .summary-item .label[b-3z1e8ws8oy] {
        color: #9ca3af;
    }

    .employee-name[b-3z1e8ws8oy] {
        border-color: #4b5563;
        background: #1f2937;
        color: #f9fafb;
    }

    .employee-name .buttons button[b-3z1e8ws8oy] {
        background-color: #6b7280;
    }

    .employee-name .buttons button:hover:not(:disabled)[b-3z1e8ws8oy] {
        background-color: #9ca3af;
    }

    .employee-name .buttons button:active[b-3z1e8ws8oy] {
        background-color: #d1d5db;
    }

    .buttons button:disabled[b-3z1e8ws8oy] {
        background-color: #4b5563;
    }

    .employee-grid .grid-item[b-3z1e8ws8oy] {
        border-color: #4b5563;
        background: #374151;
        color: #f9fafb;
    }

    .active[b-3z1e8ws8oy] {
        background-color: #1e3a8a;
        border-left-color: #3b82f6;
    }

    .selected[b-3z1e8ws8oy] {
        background-color: var(--primary-color);
        color: var(--primary-text-color);
    }

    .employee-hours-icon[b-3z1e8ws8oy] {
        background: #064e3b;
        color: #10b981;
        border-color: #10b981;
    }

    .icon-button[b-3z1e8ws8oy] {
        color: #9ca3af;
    }

    .icon-button:hover[b-3z1e8ws8oy] {
        background-color: #374151;
        color: #f9fafb;
    }

    .icon-button:disabled[b-3z1e8ws8oy] {
        color: #6b7280;
    }

    .delete-item:hover[b-3z1e8ws8oy] {
        color: #ef4444;
    }

    .small-bold i[b-3z1e8ws8oy] {
        color: #fbbf24;
    }

    .employee-name .name .lijn[b-3z1e8ws8oy] {
        border-left-color: #4b5563;
    }
}
/* _content/PersoneelPlanner/Components/Planner/Parts/EmployeeSelector.razor.rz.scp.css */
.employee-selector[b-bexboa46fh] {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .employee-selector:hover[b-bexboa46fh] {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

.employee-header[b-bexboa46fh] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #475569;
}

.employee-count[b-bexboa46fh] {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.employee-label[b-bexboa46fh] {
    font-size: 14px;
    color: #64748b;
}

.employee-circles[b-bexboa46fh] {
    display: grid;
    grid-template-columns: repeat(4, minmax(30px, 1fr));
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.employee-circle[b-bexboa46fh] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

    .employee-circle:hover[b-bexboa46fh] {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
        border-color: #ffffff;
    }

    .employee-circle.selected[b-bexboa46fh] {
        background: linear-gradient(135deg, #10b981 0%, #047857 100%);
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    }

    .employee-circle.overflow[b-bexboa46fh] {
        background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
        font-size: 10px;
    }

        .employee-circle.overflow:hover[b-bexboa46fh] {
            background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
        }

.initials[b-bexboa46fh] {
    font-size: 10px;
    font-weight: bold;
    letter-spacing: -0.5px;
}

.overflow-panel[b-bexboa46fh] {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e2e8f0;
    animation: slideDown-b-bexboa46fh 0.3s ease;
}

.no-employees[b-bexboa46fh] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.empty-state[b-bexboa46fh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.6;
}

.empty-icon[b-bexboa46fh] {
    font-size: 24px;
}

.empty-text[b-bexboa46fh] {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

@keyframes slideDown-b-bexboa46fh {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .employee-circle[b-bexboa46fh] {
        width: 36px;
        height: 36px;
    }

    .initials[b-bexboa46fh] {
        font-size: 12px;
    }

    .employee-circles[b-bexboa46fh] {
        gap: 6px;
    }
}

@media(prefers-color-scheme: dark) {
    .employee-selector[b-bexboa46fh] {
        background: #374151;
        border-color: #4b5563;
    }
}
/* _content/PersoneelPlanner/Components/Planner/Parts/Input/TimeInput.razor.rz.scp.css */

/* _content/PersoneelPlanner/Components/Planner/PlannerPart.razor.rz.scp.css */
.planner[b-h25u2z93i9] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 10px;
}

.wrapper[b-h25u2z93i9] {
    display: grid;
    grid-template-columns: 155px 1fr 275px;
    overflow-y: auto;
    scrollbar-gutter: stable;
    min-height: 60px;
}

.wrapper .middle .week-header[b-h25u2z93i9] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    overflow: hidden;
    background: white;
    height: 100%;
    min-height: fit-content;
}

.wrapper .middle .week-header .day-header[b-h25u2z93i9] {
    font-size: 0.75rem;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 45px;
    padding: 6px 4px;
    border-right: 1px solid black;
    transition: all 0.15s ease;
    cursor: pointer;
}

.wrapper .middle .week-header .day-header:last-child[b-h25u2z93i9] {
    border-right: none;
}

.wrapper .middle .week-header .day-header:hover[b-h25u2z93i9] {
    background: #f8fafc;
}

            
.day-compact[b-h25u2z93i9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 100%;
}

.wrapper .middle .week-header .day-header:first-of-type[b-h25u2z93i9] {
    border-left: 1px solid black;
}

.day-date[b-h25u2z93i9] {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
}

.day-hours[b-h25u2z93i9] {
    font-size: 0.65rem;
    color: #6b7280;
    line-height: 1;
    font-weight: 500;
}

.shop-badge[b-h25u2z93i9] {
    font-size: 0.6rem;
    font-weight: 700;
    background: #fbbf24;
    color: #92400e;
    padding: 1px 4px;
    border-radius: 3px;
    min-width: 18px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 1.2;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.shop-badge.empty[b-h25u2z93i9] {
    background: #f3f4f6;
    color: #9ca3af;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}

.button-container[b-h25u2z93i9] {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: end;
}
/* Professional button group container */
.btn-group-custom[b-h25u2z93i9] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

/* Clean professional button styling */
.btn-custom[b-h25u2z93i9] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 30px;
    background: #ffffff;
    color: #374151;
    border: none;
    border-right: 1px solid #e5e7eb;
    font-size: .7rem;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
}

.btn-custom:last-child[b-h25u2z93i9] {
    border-right: none;
}

/* Subtle hover effect */
.btn-custom:hover:not(:disabled)[b-h25u2z93i9] {
    background: #f9fafb;
    color: var(--primary-color);
}

/* Active state */
.btn-custom:active:not(:disabled)[b-h25u2z93i9] {
    background: #f3f4f6;
}

/* Professional disabled state */
.btn-custom:disabled[b-h25u2z93i9] {
    background: #f9fafb;
    color: #9ca3af;
    cursor: not-allowed;
}

/* Clean focus state for accessibility */
.btn-custom:focus[b-h25u2z93i9] {
    color: var(--primary-color);
}

/* Alternative: Separated button style */
.btn-group-custom.separated[b-h25u2z93i9] {
    gap: 8px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.btn-group-custom.separated .btn-custom[b-h25u2z93i9] {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-group-custom.separated .btn-custom:hover:not(:disabled)[b-h25u2z93i9] {
    border-color: var(--primary-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .btn-custom[b-h25u2z93i9] {
        width: 36px;
        height: 32px;
        font-size: 0.8rem;
    }
}

.wrapper .middle .week-header .day-header .dayHeaderContent[b-h25u2z93i9] {
    flex-grow: 1;
    text-align: center;
}

.wrapper .employee-grid[b-h25u2z93i9] {
    margin-left: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: end;
}

.wrapper .employee-grid .grid-item[b-h25u2z93i9] {
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
    border: 1px solid black;
    height: fit-content;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-content: center;
    max-height: 50px;
}

.planner .employee-week[b-h25u2z93i9] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.day-header[b-h25u2z93i9] {
    cursor: pointer;
}

.active-day[b-h25u2z93i9] {
    background-color: var(--primary-color) !important;
    color: white;
}

.active-day .day-hours[b-h25u2z93i9] {
    color: rgba(255,255,255,0.8);
}

.active-day .shop-badge[b-h25u2z93i9] {
    background: rgba(255,255,255,0.95);
    color: var(--primary-color);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.active-day .shop-badge.empty[b-h25u2z93i9] {
    background: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.3);
}

.selected-day[b-h25u2z93i9] {
    background-color: #eff6ff;
    border-left: 4px solid #3b82f6;
}

@media (max-width: 1400px) {
    .wrapper .employee-grid[b-h25u2z93i9] {
        display: none;
    }

    .wrapper[b-h25u2z93i9] {
        display: grid;
        grid-template-columns: 100px 1fr;
    }

    .wrapper .middle .week-header[b-h25u2z93i9] {
        border-right: 1px solid black;
    }

    .wrapper .middle .week-header .day-header[b-h25u2z93i9] {
        min-height: 40px;
        padding: 4px 2px;
    }

    .day-date[b-h25u2z93i9] {
        font-size: 0.65rem;
    }

    .day-hours[b-h25u2z93i9] {
        font-size: 0.6rem;
    }

    .shop-badge[b-h25u2z93i9] {
        font-size: 0.55rem;
        padding: 1px 3px;
        min-width: 16px;
    }
}

.budget[b-h25u2z93i9] {
    font-size: 0.65rem;
    padding: 1px 4px;
    border-radius: 3px;
    display: inline-block;
}

.budget.green[b-h25u2z93i9] {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.budget.orange[b-h25u2z93i9] {
    background: #fed7aa;
    color: #c2410c;
    border: 1px solid #fdba74;
}

.budget.red[b-h25u2z93i9] {
    background: #fecaca;
    color: #dc2626;
    border: 1px solid #fca5a5;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .planner[b-h25u2z93i9] {
        background: #1f2937;
        color: #f9fafb;
    }

    .wrapper .middle .week-header[b-h25u2z93i9] {
        background: #374151;
        border-color: #4b5563;
        color: #f9fafb;
    }

    .wrapper .middle .week-header .day-header[b-h25u2z93i9] {
        border-right-color: #4b5563;
        color: #f9fafb;
    }

    .wrapper .middle .week-header .day-header:hover[b-h25u2z93i9] {
        background: #4b5563;
    }

    .wrapper .middle .week-header .day-header:first-of-type[b-h25u2z93i9] {
        border-left-color: #4b5563;
    }

    .day-hours[b-h25u2z93i9] {
        color: #9ca3af;
    }

    .shop-badge[b-h25u2z93i9] {
        background: #f59e0b;
        color: #1f2937;
    }

    .shop-badge.empty[b-h25u2z93i9] {
        background: #4b5563;
        color: #9ca3af;
        border-color: #6b7280;
    }

    .btn-group-custom[b-h25u2z93i9] {
        background: #374151;
        border-color: #6b7280;
    }

    .btn-custom[b-h25u2z93i9] {
        background: #374151;
        color: #d1d5db;
        border-right-color: #6b7280;
    }

    .btn-custom:hover:not(:disabled)[b-h25u2z93i9] {
        background: #4b5563;
        color: var(--primary-color);
    }

    .btn-custom:active:not(:disabled)[b-h25u2z93i9] {
        background: #6b7280;
    }

    .btn-custom:disabled[b-h25u2z93i9] {
        background: #4b5563;
        color: #6b7280;
    }

    .btn-group-custom.separated .btn-custom[b-h25u2z93i9] {
        border-color: #6b7280;
        background: #374151;
    }

    .btn-group-custom.separated .btn-custom:hover:not(:disabled)[b-h25u2z93i9] {
        border-color: var(--primary-color);
        background: #4b5563;
    }

    .wrapper .employee-grid .grid-item[b-h25u2z93i9] {
        border-color: #4b5563;
        background: #374151;
        color: #f9fafb;
    }

    .active-day .shop-badge[b-h25u2z93i9] {
        background: rgba(255,255,255,0.95);
        color: var(--primary-color);
    }

    .active-day .shop-badge.empty[b-h25u2z93i9] {
        background: rgba(255,255,255,0.2);
        color: rgba(255,255,255,0.7);
        border-color: rgba(255,255,255,0.3);
    }

    .budget.green[b-h25u2z93i9] {
        background: #065f46;
        color: #a7f3d0;
        border-color: #059669;
    }

    .budget.orange[b-h25u2z93i9] {
        background: #92400e;
        color: #fbbf24;
        border-color: #d97706;
    }

    .budget.red[b-h25u2z93i9] {
        background: #991b1b;
        color: #fca5a5;
        border-color: #dc2626;
    }
}
/* _content/PersoneelPlanner/Components/Planner/PlannerWeekDetails.razor.rz.scp.css */
/* Dark mode variables */

.employee-header[b-rw8hs7h8iy] {
    font-size: 0.8rem;
    font-weight: normal;
    width: 100%;
}

    .employee-header table tbody tr td:first-of-type[b-rw8hs7h8iy] {
        text-align: left;
    }

    .employee-header table tbody tr td:last-of-type[b-rw8hs7h8iy] {
        text-align: right;
    }

.employee-table[b-rw8hs7h8iy] {
    border-collapse: collapse;
}

    .employee-table th[b-rw8hs7h8iy], .employee-table td[b-rw8hs7h8iy] {
        padding: 1px 5px;
        border: 1px solid black;
        color: black;
    }

    .employee-table tbody tr:nth-child(odd)[b-rw8hs7h8iy] {
        background-color: #f2f2f2;
    }

    .employee-table tbody tr:nth-child(even)[b-rw8hs7h8iy] {
        background-color: white;
    }

    .employee-table th[b-rw8hs7h8iy] {
        text-align: center;
        background-color: var(--primary-color);
        color: var(--primary-text-color);
    }

.huidige-week-button[b-rw8hs7h8iy] {
    font-size: 0.875rem;
    font-weight: normal;
    text-transform: capitalize;
    border: none;
    background-color: var(--primary-color);
    color: var(--primary-text-color);
    width: 100%;
    padding: 8px;
}

    .huidige-week-button:disabled[b-rw8hs7h8iy] {
        background-color: #94a3b8;
        cursor: not-allowed;
        opacity: 0.6;
    }

    .huidige-week-button:hover:not(:disabled)[b-rw8hs7h8iy] {
        border: 1px solid var(--primary-color);
        background-color: white;
        color: var(--primary-color);
    }

@media (max-width: 1400px) {
    .employee-table tr td:first-of-type[b-rw8hs7h8iy] {
        display: none;
    }

    .employee-header table tbody tr td:last-of-type[b-rw8hs7h8iy] {
        text-align: center;
    }

    .employee-table[b-rw8hs7h8iy] {
        width: 100px;
    }
}

@media(prefers-color-scheme: dark) {
    .employee-table th[b-rw8hs7h8iy], .employee-table td[b-rw8hs7h8iy] {
        background: #374151;
        border-color: #4b5563;
        color: white;
    }
}
/* _content/PersoneelPlanner/Components/SaveStatusModal.razor.rz.scp.css */
@media (prefers-color-scheme: dark) {
    .status-container.success[b-2pvmxx3o0x] {
        background-color: rgba(40, 167, 69, 0.15);
        color: #4ade80;
        border-color: rgba(40, 167, 69, 0.4);
    }

    .status-container.error[b-2pvmxx3o0x] {
        background-color: rgba(220, 53, 69, 0.15);
        color: #f87171;
        border-color: rgba(220, 53, 69, 0.4);
    }

    :deep(.btn-close)[b-2pvmxx3o0x] {
        filter: invert(1);
    }
}
/* _content/PersoneelPlanner/Components/StoreMenuBar/StoreMenuBar.razor.rz.scp.css */
.store-menu[b-oyhcvlehy5] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: transparent;
    color: #1f2937;
    overflow: hidden;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

/* Navigation Section */
.nav-section[b-oyhcvlehy5] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    flex-shrink: 0;
}

/* Main Content */
.menu-content[b-oyhcvlehy5] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

/* Planning Section */
.planning-section[b-oyhcvlehy5] {
    padding: 10px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    flex-shrink: 0;
    display: flex;
    gap: 5px;
    flex-direction: column;
}

/* Search Section */
.search-section[b-oyhcvlehy5] {
    padding: 10px;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    flex-shrink: 0;
}

.search-wrapper[b-oyhcvlehy5] {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon[b-oyhcvlehy5] {
    position: absolute;
    left: 16px;
    color: #6b7280;
    font-size: 14px;
    z-index: 1;
}

.search-input-navbar[b-oyhcvlehy5] {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    background: #ffffff;
    color: #1f2937;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .search-input-navbar[b-oyhcvlehy5]::placeholder {
        color: #9ca3af;
    }

    .search-input-navbar:focus[b-oyhcvlehy5] {
        outline: none;
        border-color: #3b82f6;
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

.clear-search[b-oyhcvlehy5] {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

    .clear-search:hover[b-oyhcvlehy5] {
        background: #f3f4f6;
        color: #374151;
    }

/* Store Section */
.store-section[b-oyhcvlehy5] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.section-header[b-oyhcvlehy5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f8f9fa;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

    .section-header:hover[b-oyhcvlehy5] {
        background: #e9ecef;
    }

.section-title[b-oyhcvlehy5] {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #1f2937;
}

.section-actions[b-oyhcvlehy5] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.store-count[b-oyhcvlehy5] {
    background: #e5e7eb;
    color: #374151;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.toggle-icon[b-oyhcvlehy5] {
    transition: transform 0.3s ease;
}

.store-list[b-oyhcvlehy5] {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px;
    transition: all 0.3s ease;
}

    .store-list.collapsed[b-oyhcvlehy5] {
        max-height: 0;
        padding: 0 20px;
        overflow: hidden;
    }

    .store-list.expanded[b-oyhcvlehy5] {
        max-height: none;
        padding: 8px 20px 20px;
    }

/* Store Items */
.store-item[b-oyhcvlehy5] {
    padding: 10px;
    margin: 4px 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

    .store-item:hover[b-oyhcvlehy5] {
        background: #f3f4f6;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.store-content[b-oyhcvlehy5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-name[b-oyhcvlehy5] {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
}

.store-status[b-oyhcvlehy5] {
    display: flex;
    align-items: center;
}

.status-badge[b-oyhcvlehy5] {
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .status-badge.active[b-oyhcvlehy5] {
        background: var(--primary-color);
        color: white;
    }

    .status-badge.locked[b-oyhcvlehy5] {
        background: #f59e0b;
        color: white;
    }

/* Selected Store Styles */
.selected-store[b-oyhcvlehy5] {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: var(--primary-color) !important;
    color: #065f46 !important;
}

    .selected-store:hover[b-oyhcvlehy5] {
        background: rgba(16, 185, 129, 0.2) !important;
    }

.selected-store-locked[b-oyhcvlehy5] {
    background: rgba(245, 158, 11, 0.1) !important;
    border-color: #f59e0b !important;
    color: #92400e !important;
}

    .selected-store-locked:hover[b-oyhcvlehy5] {
        background: rgba(245, 158, 11, 0.2) !important;
    }

/* No Results */
.no-results[b-oyhcvlehy5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 40px 20px;
    color: #6b7280;
    font-size: 14px;
}

    .no-results i[b-oyhcvlehy5] {
        font-size: 32px;
        margin-bottom: 8px;
    }

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .store-menu[b-oyhcvlehy5] {
        color: #f9fafb;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }

    /* Navigation Section - Dark Mode */
    .nav-section[b-oyhcvlehy5] {
        background: #1f2937;
        border-bottom: 1px solid #374151;
    }

    /* Planning Section - Dark Mode */
    .planning-section[b-oyhcvlehy5] {
        background: #1f2937;
        border-bottom: 1px solid #374151;
    }

    /* Search Section - Dark Mode */
    .search-section[b-oyhcvlehy5] {
        background: #111827;
        border-bottom: 1px solid #374151;
    }

    .search-icon[b-oyhcvlehy5] {
        color: #9ca3af;
    }

    .search-input-navbar[b-oyhcvlehy5] {
        background: #374151;
        border-color: #4b5563;
        color: #f9fafb;
    }

        .search-input-navbar[b-oyhcvlehy5]::placeholder {
            color: #6b7280;
        }

        .search-input-navbar:focus[b-oyhcvlehy5] {
            border-color: #3b82f6;
            background: #374151;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        }

    .clear-search[b-oyhcvlehy5] {
        color: #9ca3af;
    }

        .clear-search:hover[b-oyhcvlehy5] {
            background: #4b5563;
            color: #f3f4f6;
        }

    /* Store Section - Dark Mode */
    .section-header[b-oyhcvlehy5] {
        background: #1f2937;
    }

        .section-header:hover[b-oyhcvlehy5] {
            background: #374151;
        }

    .section-title[b-oyhcvlehy5] {
        color: #f9fafb;
    }

    .store-count[b-oyhcvlehy5] {
        background: #4b5563;
        color: #f3f4f6;
    }

    /* Store Items - Dark Mode */
    .store-item[b-oyhcvlehy5] {
        background: #374151;
        border-color: #4b5563;
    }

        .store-item:hover[b-oyhcvlehy5] {
            background: #4b5563;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

    .store-name[b-oyhcvlehy5] {
        color: #f9fafb;
    }

    /* Selected Store Styles - Dark Mode */
    .selected-store[b-oyhcvlehy5] {
        background: rgba(16, 185, 129, 0.2) !important;
        border-color: var(--primary-color) !important;
        color: #6ee7b7 !important;
    }

        .selected-store:hover[b-oyhcvlehy5] {
            background: rgba(16, 185, 129, 0.3) !important;
        }

    .selected-store-locked[b-oyhcvlehy5] {
        background: rgba(245, 158, 11, 0.2) !important;
        border-color: #f59e0b !important;
        color: #fbbf24 !important;
    }

        .selected-store-locked:hover[b-oyhcvlehy5] {
            background: rgba(245, 158, 11, 0.3) !important;
        }

    /* No Results - Dark Mode */
    .no-results[b-oyhcvlehy5] {
        color: #9ca3af;
    }

    .nav-section .nav-button i[b-oyhcvlehy5] {
        color: white;
    }

    .nav-section .nav-button img[b-oyhcvlehy5] {
        filter: brightness(0) invert(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-section[b-oyhcvlehy5] {
        gap: 8px;
    }

    .search-input-navbar[b-oyhcvlehy5] {
        padding: 10px 14px 10px 36px;
    }

    .section-header[b-oyhcvlehy5] {
        padding: 12px 16px;
    }

    .store-list[b-oyhcvlehy5] {
        padding: 0 16px;
    }

        .store-list.expanded[b-oyhcvlehy5] {
            padding: 8px 16px 16px;
        }
}
/* _content/PersoneelPlanner/Components/ToDoCards/ToDoBar.razor.rz.scp.css */
.todo-bar-container[b-f4sfjcrd1e] {
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    margin-bottom: 24px;
}

.todo-bar-header[b-f4sfjcrd1e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.todo-bar-title[b-f4sfjcrd1e] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.todo-bar-actions[b-f4sfjcrd1e] {
    display: flex;
    gap: 12px;
}

.btn-primary[b-f4sfjcrd1e], .btn-secondary[b-f4sfjcrd1e] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary[b-f4sfjcrd1e] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

    .btn-primary:hover[b-f4sfjcrd1e] {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        transform: translateY(-1px);
    }

.btn-secondary[b-f4sfjcrd1e] {
    background: white;
    color: #374151;
    border: 1px solid #d1d5db;
}

    .btn-secondary:hover[b-f4sfjcrd1e] {
        background: #f9fafb;
        border-color: #9ca3af;
        transform: translateY(-1px);
    }

.btn-icon[b-f4sfjcrd1e] {
    width: 16px;
    height: 16px;
}

.todo-cards-grid[b-f4sfjcrd1e] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: start;
}

/* Responsive design */
@media (max-width: 768px) {
    .todo-bar-container[b-f4sfjcrd1e] {
        padding: 16px;
    }

    .todo-bar-header[b-f4sfjcrd1e] {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .todo-bar-title[b-f4sfjcrd1e] {
        font-size: 1.5rem;
    }

    .todo-cards-grid[b-f4sfjcrd1e] {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .todo-bar-actions[b-f4sfjcrd1e] {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary[b-f4sfjcrd1e], .btn-secondary[b-f4sfjcrd1e] {
        justify-content: center;
    }
}
/* _content/PersoneelPlanner/Components/ToDoCards/ToDoCard.razor.rz.scp.css */
/* Root variables for light and dark themes */
:root[b-ir1b1jotui] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --border-light: #e5e7eb;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

/* Dark mode variables */
@media (prefers-color-scheme: dark) {
    :root[b-ir1b1jotui] {
        --bg-primary: #1a1a1a;
        --bg-secondary: #2d2d2d;
        --text-primary: #ffffff;
        --text-secondary: #b0b0b0;
        --border-light: #404040;
        --shadow-light: rgba(0, 0, 0, 0.2);
        --shadow-medium: rgba(0, 0, 0, 0.3);
        --shadow-hover: rgba(0, 0, 0, 0.4);
    }
}

/* Manual dark mode class override */
[data-theme="dark"][b-ir1b1jotui] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-light: #404040;
    --shadow-light: rgba(0, 0, 0, 0.2);
    --shadow-medium: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(0, 0, 0, 0.4);
}

.todo-card-container[b-ir1b1jotui] {
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .todo-card-container:hover[b-ir1b1jotui] {
        transform: translateY(-2px);
    }

.todo-card[b-ir1b1jotui] {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 4px 6px var(--shadow-light), 0 1px 3px var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

    .todo-card:hover[b-ir1b1jotui] {
        box-shadow: 0 8px 25px var(--shadow-hover), 0 4px 10px var(--shadow-medium);
        border-color: var(--border-color);
    }

    .todo-card[b-ir1b1jotui]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--border-color) 0%, transparent 100%);
    }

.todo-header[b-ir1b1jotui] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.todo-title-section[b-ir1b1jotui] {
    flex: 1;
}

.todo-title[b-ir1b1jotui] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.todo-status-badge[b-ir1b1jotui] {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.todo-icon-wrapper[b-ir1b1jotui] {
    width: 40px;
    height: 40px;
    background: var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
}

.todo-icon[b-ir1b1jotui] {
    width: 20px;
    height: 20px;
    color: white;
}

.todo-content[b-ir1b1jotui] {
    flex: 1;
    margin-bottom: 16px;
}

.todo-description[b-ir1b1jotui] {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.todo-progress[b-ir1b1jotui] {
    width: 100%;
    height: 4px;
    background-color: var(--border-light);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar[b-ir1b1jotui] {
    height: 100%;
    background: linear-gradient(90deg, var(--border-color) 0%, var(--border-color) 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.todo-footer[b-ir1b1jotui] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.todo-meta[b-ir1b1jotui] {
    display: flex;
    gap: 16px;
}

.meta-item[b-ir1b1jotui] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.meta-icon[b-ir1b1jotui] {
    width: 14px;
    height: 14px;
}

.todo-arrow[b-ir1b1jotui] {
    width: 20px;
    height: 20px;
    color: var(--border-color);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.todo-card:hover .todo-arrow[b-ir1b1jotui] {
    opacity: 1;
}

/* Responsive design */
@media (max-width: 768px) {
    .todo-card[b-ir1b1jotui] {
        padding: 16px;
        min-height: 160px;
    }

    .todo-title[b-ir1b1jotui] {
        font-size: 1.1rem;
    }

    .todo-meta[b-ir1b1jotui] {
        flex-direction: column;
        gap: 8px;
    }
}
/* _content/PersoneelPlanner/Components/ToolsBarMenu/ToolsBarButton.razor.rz.scp.css */
/* Base button styles */
button[b-rn4661avoa] {
    position: relative;
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    outline: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Button content container */
.button-content[b-rn4661avoa] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Icon styling */
.button-content img[b-rn4661avoa] {
    width: 48px;
    height: 48px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    /* Remove the filter to preserve original colors */
    filter: none;
    object-fit: contain;
}

/* Hover effects */
button:hover[b-rn4661avoa] {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f5 100%);
    border-color: rgba(0, 0, 0, 0.12);
}

button:hover .button-content img[b-rn4661avoa] {
    transform: scale(1.05);
    /* Keep original colors on hover */
    filter: brightness(1.1) saturate(1.1);
}

/* Active/pressed state */
button:active[b-rn4661avoa] {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 4px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

button:active .button-content img[b-rn4661avoa] {
    transform: scale(0.98);
}

/* Focus state for accessibility */
button:focus-visible[b-rn4661avoa] {
    outline: 3px solid #4dabf7;
    outline-offset: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 0 0 3px rgba(77, 171, 247, 0.3);
}

/* Disabled/empty state */
.empty-button[b-rn4661avoa] {
    pointer-events: none;
    opacity: 0.4;
    background: #f8f9fa;
    box-shadow: none;
    transform: none !important;
}

.empty-button:hover[b-rn4661avoa] {
    transform: none !important;
    box-shadow: none !important;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    button[b-rn4661avoa] {
        background: #374151 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.1);
    }

    button:hover[b-rn4661avoa] {
        background: linear-gradient(135deg, #3a3a3a 0%, #2c2c2c 100%);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.15);
    }

    button:active[b-rn4661avoa] {
        background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    }

    /* Keep original colors in dark mode too */
    .button-content img[b-rn4661avoa] {
        filter: none;
    }

    button:hover .button-content img[b-rn4661avoa] {
        filter: brightness(1.1) saturate(1.1);
    }
}

/* Animation for loading states */
@keyframes pulse-b-rn4661avoa {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

button.loading[b-rn4661avoa] {
    animation: pulse-b-rn4661avoa 1.5s ease-in-out infinite;
}

/* Responsive design */
@media (max-width: 768px) {
    button[b-rn4661avoa] {
        width: 72px;
        height: 72px;
        border-radius: 14px;
    }

    .button-content img[b-rn4661avoa] {
        width: 42px;
        height: 42px;
    }

    .empty-button[b-rn4661avoa] {
        display: none;
    }
}
/* _content/PersoneelPlanner/Components/ToolsBarMenu/ToolsBarMenu.razor.rz.scp.css */
h3[b-dtlbskapi1] {
    border-bottom: 2px solid;
    margin-bottom: 1rem;
    width: 8rem;
}
/* _content/PersoneelPlanner/Components/Verlof/EmployeeAccordionItem.razor.rz.scp.css */
.accordion-header-content[b-oa1pel9k7c] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-weight: 600;
}

.number-of-verlof[b-oa1pel9k7c] {
    padding: 8px 12px !important;
    margin-right: 20px !important;
}

.filter-btns[b-oa1pel9k7c] {
    display: flex;
    justify-content: space-evenly;
}

.accordion-filter-content[b-oa1pel9k7c] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

    .accordion-filter-content button[b-oa1pel9k7c] {
        color: white;
        border: 1px solid red;
        border-radius: 5px;
        background-color: red;
    }

        .accordion-filter-content button:not(.clear-filters-btn-disabled):hover[b-oa1pel9k7c] {
            background-color: darkred;
            border: 1px solid darkred;
        }

        .accordion-filter-content button.clear-filters-btn-disabled[b-oa1pel9k7c] {
            background-color: lightgray;
            border: 1px solid lightgray;
        }

.custom-table-inner .table[b-oa1pel9k7c] {
    margin-bottom: 0; /* Remove default margin from table inside accordion */
}

.no-filtered-data-message[b-oa1pel9k7c] {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    background-color: #f5f7fb;
    color: #6c757d;
    font-size: 1rem;
}
/* _content/PersoneelPlanner/Components/WeekToggler/WeekSelector.razor.rz.scp.css */
:root[b-kq3x2n8m06] {
    --bg-light: #ffffff;
    --bg-light-hover: #f8fafc;
    --bg-light-active: #e2e8f0;
    --bg-light-disabled: #f1f5f9;
    --bg-dark: #1f2937;
    --bg-dark-hover: #374151;
    --bg-dark-active: #4b5563;
    --bg-dark-disabled: #6b7280;
    --text-light: #1e293b;
    --text-muted-light: #64748b;
    --text-dark: #f1f5f9;
    --text-muted-dark: #9ca3af;
    --border-light: #e2e8f0;
    --border-dark: #4b5563;
    --primary: #3b82f6;
    --primary-hover: #2563eb;
}

/* Week Selector Container */
.week-selector-container[b-kq3x2n8m06] {
    display: flex;
    justify-content: center;
}

/* Main Week Selector */
.week-selector[b-kq3x2n8m06] {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible; /* Changed to visible for dropdown */
    transition: all 0.2s ease;
    width: 100%;
}

/* Navigation Buttons */
.nav-button[b-kq3x2n8m06] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: min-content;
    background: #f8fafc;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 11px;
    padding: 5px 10px !important;
    border: 1px solid black;
    border-radius: 0px !important;
}

    .nav-button:hover:not(:disabled)[b-kq3x2n8m06] {
        background: #e2e8f0;
        color: #475569;
    }

    .nav-button:active:not(:disabled)[b-kq3x2n8m06] {
        background: #cbd5e1;
    }

    .nav-button:disabled[b-kq3x2n8m06] {
        color: #cbd5e1;
        cursor: not-allowed;
        background: #f1f5f9;
    }

/* Week Display Area - Now clickable */
.week-display[b-kq3x2n8m06] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 8px 12px;
    cursor: pointer;
    background: #ffffff;
    transition: background-color 0.2s ease;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    width: 100%;
}

    .week-display:hover[b-kq3x2n8m06] {
        background: #f8fafc;
    }

.week-info[b-kq3x2n8m06] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    align-items: center;
}

.week-label[b-kq3x2n8m06] {
    font-size: 11px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.2;
}

.date-range[b-kq3x2n8m06] {
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 1px;
}

/* Dropdown Icon */
.dropdown-icon[b-kq3x2n8m06] {
    color: #94a3b8;
    font-size: 12px;
    transition: transform 0.2s ease;
    margin-left: 8px;
}

    .dropdown-icon.rotate[b-kq3x2n8m06] {
        transform: rotate(180deg);
    }

/* Dropdown Menu */
.week-dropdown-menu[b-kq3x2n8m06] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.week-option[b-kq3x2n8m06] {
    padding: 8px 12px;
    font-size: 10px;
    color: #475569;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}

    .week-option:hover[b-kq3x2n8m06] {
        background: #f8fafc;
    }

    .week-option.selected[b-kq3x2n8m06] {
        background: #3b82f6;
        color: #ffffff;
    }

        .week-option.selected:hover[b-kq3x2n8m06] {
            background: #2563eb;
        }

    .week-option:last-child[b-kq3x2n8m06] {
        border-bottom: none;
    }

@media (prefers-color-scheme: dark) {
    .week-selector-container[b-kq3x2n8m06],
    .nav-button[b-kq3x2n8m06],
    .week-display[b-kq3x2n8m06] {
        background: var(--bg-dark);
        color: var(--text-dark);
        border-color: var(--border-dark);
    }

    .nav-button[b-kq3x2n8m06] {
        background: var(--bg-dark);
        color: var(--text-muted-dark);
        border-color: var(--border-dark);
    }

        .nav-button:hover:not(:disabled)[b-kq3x2n8m06] {
            background: var(--bg-dark-hover);
            color: white;
        }

        .nav-button:disabled[b-kq3x2n8m06] {
            background: var(--bg-dark-disabled);
            color: #9ca3af;
        }

    .week-display:hover[b-kq3x2n8m06] {
        background: var(--bg-dark-hover);
    }

    .week-label[b-kq3x2n8m06] {
        color: var(--text-dark);
    }

    .date-range[b-kq3x2n8m06] {
        color: var(--text-muted-dark);
    }

    .dropdown-icon[b-kq3x2n8m06] {
        color: var(--text-muted-dark);
    }

    .week-dropdown-menu[b-kq3x2n8m06] {
        background: #1f2937;
        border-color: var(--border-dark);
    }

    .week-option[b-kq3x2n8m06] {
        color: var(--text-muted-dark);
        border-bottom: 1px solid var(--bg-dark-active);
    }

        .week-option:hover[b-kq3x2n8m06] {
            background: #374151;
            color: white;
        }

        .week-option.selected[b-kq3x2n8m06] {
            background: var(--primary);
            color: white;
        }

            .week-option.selected:hover[b-kq3x2n8m06] {
                background: var(--primary-hover);
            }
}
/* _content/PersoneelPlanner/Layouts/CashRegisterLayout.razor.rz.scp.css */
.page[b-nw2y11auhi] {
    min-height: 100vh;
}

article[b-nw2y11auhi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
/* _content/PersoneelPlanner/Layouts/LoginLayout.razor.rz.scp.css */
/* Reset and base styles */
*[b-oro2z8ikuc] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.page[b-oro2z8ikuc] {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main[b-oro2z8ikuc] {
    width: 100%;
    min-height: 100vh;
}

article[b-oro2z8ikuc] {
    width: 100%;
    min-height: 100vh;
    padding: 0;
}

.content[b-oro2z8ikuc] {
    padding: 0 !important;
    width: 100%;
    min-height: 100vh;
}
/* _content/PersoneelPlanner/Layouts/MainLayout.razor.rz.scp.css */
/* Base page container */
.page[b-hemstpzl4n] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Mobile Navigation Header */
.mobile-nav-header[b-hemstpzl4n] {
    display: none;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 16px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-nav-content[b-hemstpzl4n] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-toggle[b-hemstpzl4n] {
    background: none;
    border: none;
    font-size: 18px;
    color: #374151;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

    .mobile-menu-toggle:hover[b-hemstpzl4n] {
        background: #f3f4f6;
    }

.mobile-nav-actions[b-hemstpzl4n] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-button-bar[b-hemstpzl4n] {
    display: flex;
    gap: 6px;
}

    .mobile-button-bar .btn-sm[b-hemstpzl4n] {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 32px;
        height: 32px;
    }

/* Mobile Menu Overlay */
.mobile-menu-overlay[b-hemstpzl4n] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

    .mobile-menu-overlay.open[b-hemstpzl4n] {
        opacity: 1;
        visibility: visible;
    }

/* Main content area */
main[b-hemstpzl4n] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* Article content with proper scrolling */
article[b-hemstpzl4n] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    min-height: 0;
}

/* Sidebar styling */
.sidebar[b-hemstpzl4n] {
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    border-right: 1px solid #ddd;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
}

/* Sidebar main content area */
.sidebar-main[b-hemstpzl4n] {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

/* Sidebar bottom section */
.sidebar-bottom[b-hemstpzl4n] {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

/* Button bar styling */
.button-bar[b-hemstpzl4n] {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    border-top: 1px solid #e9ecef;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

    /* Button Base Styles */
    .button-bar .btn[b-hemstpzl4n],
    .mobile-button-bar .btn[b-hemstpzl4n] {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 12px;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        min-width: 40px;
        height: 36px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

        .button-bar .btn:hover[b-hemstpzl4n],
        .mobile-button-bar .btn:hover[b-hemstpzl4n] {
            transform: translateY(-1px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        }

        .button-bar .btn:active[b-hemstpzl4n],
        .mobile-button-bar .btn:active[b-hemstpzl4n] {
            transform: translateY(0);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .button-bar .btn:focus[b-hemstpzl4n],
        .mobile-button-bar .btn:focus[b-hemstpzl4n] {
            outline: none;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

    /* Secondary Button (Cancel) */
    .button-bar .btn-secondary[b-hemstpzl4n],
    .mobile-button-bar .btn-secondary[b-hemstpzl4n] {
        background: #ffffff;
        color: #6b7280;
        border: 1px solid #e5e7eb;
    }

        .button-bar .btn-secondary:hover[b-hemstpzl4n],
        .mobile-button-bar .btn-secondary:hover[b-hemstpzl4n] {
            background: #f9fafb;
            color: #374151;
            border-color: #d1d5db;
        }

        .button-bar .btn-secondary:active[b-hemstpzl4n],
        .mobile-button-bar .btn-secondary:active[b-hemstpzl4n] {
            background: #f3f4f6;
        }

    /* Primary Button (Save & PDF) */
    .button-bar .btn-primary[b-hemstpzl4n],
    .mobile-button-bar .btn-primary[b-hemstpzl4n] {
        background: #3b82f6;
        color: white;
        border: 1px solid #3b82f6;
    }

        .button-bar .btn-primary:hover[b-hemstpzl4n],
        .mobile-button-bar .btn-primary:hover[b-hemstpzl4n] {
            background: #2563eb;
            border-color: #2563eb;
        }

        .button-bar .btn-primary:active[b-hemstpzl4n],
        .mobile-button-bar .btn-primary:active[b-hemstpzl4n] {
            background: #1d4ed8;
        }

    /* Icon Styling */
    .button-bar .btn i[b-hemstpzl4n],
    .mobile-button-bar .btn i[b-hemstpzl4n] {
        font-size: 14px;
    }

.mobile-button-bar .btn-sm i[b-hemstpzl4n] {
    font-size: 12px;
}

/* Mobile-first approach - Mobile styles */
@media (max-width: 1400px) {
    .mobile-nav-header[b-hemstpzl4n] {
        display: block;
    }

    .page[b-hemstpzl4n] {
        flex-direction: column;
    }

    .sidebar[b-hemstpzl4n] {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        z-index: 1000;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

        .sidebar.mobile-open[b-hemstpzl4n] {
            left: 0;
        }

    main[b-hemstpzl4n] {
        flex: 1;
        min-height: 0;
    }

    /* Hide desktop sidebar bottom on mobile since we have mobile nav */
    .sidebar-bottom[b-hemstpzl4n] {
        display: none;
    }
}

/* Tablet styles (keeping some mobile nav but potentially different layout) */
@media (min-width: 641px) and (max-width: 1400px) {
    .sidebar[b-hemstpzl4n] {
        width: 320px;
    }
}
/* Add this rule to hide the button bar only on smartphones */
@media (max-width: 768px) {
    .mobile-button-bar[b-hemstpzl4n] {
        display: none;
    }
}

/* Desktop styles - when sidebar is shown */
@media (min-width: 1401px) {
    .mobile-nav-header[b-hemstpzl4n] {
        display: none;
    }

    .page[b-hemstpzl4n] {
        flex-direction: row;
    }

    .sidebar[b-hemstpzl4n] {
        width: 200px;
        height: 100vh;
        max-height: 100vh;
        flex-shrink: 0;
        position: sticky;
        top: 0;
        overflow-y: auto;
    }

    .sidebar-bottom[b-hemstpzl4n] {
        display: flex;
    }

    main[b-hemstpzl4n] {
        flex: 1;
        height: 100vh;
        max-height: 100vh;
    }

    /* Hide mobile menu overlay on desktop */
    .mobile-menu-overlay[b-hemstpzl4n] {
        display: none;
    }
}

/* Error UI */
#blazor-error-ui[b-hemstpzl4n] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-hemstpzl4n] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* Store Items */
.store-item[b-hemstpzl4n] {
    padding: 10px;
    margin: 4px 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

    .store-item:hover[b-hemstpzl4n] {
        background: #f3f4f6;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.store-content[b-hemstpzl4n] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-name[b-hemstpzl4n] {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
}

.store-status[b-hemstpzl4n] {
    display: flex;
    align-items: center;
}

.status-badge[b-hemstpzl4n] {
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .status-badge.active[b-hemstpzl4n] {
        background: var(--primary-color);
        color: white;
    }

    .status-badge.locked[b-hemstpzl4n] {
        background: #f59e0b;
        color: white;
    }

/* Selected Store Styles */
.selected-store[b-hemstpzl4n] {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: var(--primary-color) !important;
    color: #065f46 !important;
}

    .selected-store:hover[b-hemstpzl4n] {
        background: rgba(16, 185, 129, 0.2) !important;
    }

.selected-store-locked[b-hemstpzl4n] {
    background: rgba(245, 158, 11, 0.1) !important;
    border-color: #f59e0b !important;
    color: #92400e !important;
}

    .selected-store-locked:hover[b-hemstpzl4n] {
        background: rgba(245, 158, 11, 0.2) !important;
    }

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .page[b-hemstpzl4n] {
        background: #111827;
        color: #f9fafb;
    }

    /* Mobile Navigation Header Dark Mode */
    .mobile-nav-header[b-hemstpzl4n] {
        background: #1f2937;
        border-bottom-color: #374151;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .mobile-menu-toggle[b-hemstpzl4n] {
        color: #f9fafb;
    }

        .mobile-menu-toggle:hover[b-hemstpzl4n] {
            background: #374151;
        }

    /* Mobile Menu Overlay Dark Mode */
    .mobile-menu-overlay[b-hemstpzl4n] {
        background: rgba(0, 0, 0, 0.7);
    }

    /* Main content area Dark Mode */
    main[b-hemstpzl4n] {
        background: #111827;
        color: #f9fafb;
    }

    article[b-hemstpzl4n] {
        background: #111827;
        color: #f9fafb;
    }

    /* Sidebar Dark Mode */
    .sidebar[b-hemstpzl4n] {
        background-color: #1f2937;
        border-right-color: #374151;
    }

    /* Button bar Dark Mode */
    .button-bar[b-hemstpzl4n] {
        background: #1f2937;
        border-bottom-color: #374151;
        border-top-color: #374151;
    }

        /* Button Dark Mode Styles */
        .button-bar .btn-secondary[b-hemstpzl4n],
        .mobile-button-bar .btn-secondary[b-hemstpzl4n] {
            background: #374151;
            color: #d1d5db;
            border-color: #4b5563;
        }

            .button-bar .btn-secondary:hover[b-hemstpzl4n],
            .mobile-button-bar .btn-secondary:hover[b-hemstpzl4n] {
                background: #4b5563;
                color: #f9fafb;
                border-color: #6b7280;
            }

            .button-bar .btn-secondary:active[b-hemstpzl4n],
            .mobile-button-bar .btn-secondary:active[b-hemstpzl4n] {
                background: #6b7280;
            }

        .button-bar .btn-primary[b-hemstpzl4n],
        .mobile-button-bar .btn-primary[b-hemstpzl4n] {
            background: #3b82f6;
            color: white;
            border-color: #3b82f6;
        }

            .button-bar .btn-primary:hover[b-hemstpzl4n],
            .mobile-button-bar .btn-primary:hover[b-hemstpzl4n] {
                background: #2563eb;
                border-color: #2563eb;
            }

            .button-bar .btn-primary:active[b-hemstpzl4n],
            .mobile-button-bar .btn-primary:active[b-hemstpzl4n] {
                background: #1d4ed8;
            }

        /* Enhanced shadow for dark mode */
        .button-bar .btn:hover[b-hemstpzl4n],
        .mobile-button-bar .btn:hover[b-hemstpzl4n] {
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
        }

        .button-bar .btn:focus[b-hemstpzl4n],
        .mobile-button-bar .btn:focus[b-hemstpzl4n] {
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        }

    /* Error UI Dark Mode */
    #blazor-error-ui[b-hemstpzl4n] {
        background: #7f1d1d;
        color: #fecaca;
        box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.4);
    }

    /* Store Items Dark Mode */
    .store-item[b-hemstpzl4n] {
        background: #374151;
        border-color: #4b5563;
    }

        .store-item:hover[b-hemstpzl4n] {
            background: #4b5563;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

    .store-name[b-hemstpzl4n] {
        color: #f9fafb;
    }

    /* Selected Store Dark Mode */
    .selected-store[b-hemstpzl4n] {
        background: rgba(16, 185, 129, 0.2) !important;
        border-color: #10b981 !important;
        color: #6ee7b7 !important;
    }

        .selected-store:hover[b-hemstpzl4n] {
            background: rgba(16, 185, 129, 0.3) !important;
        }

    .selected-store-locked[b-hemstpzl4n] {
        background: rgba(245, 158, 11, 0.2) !important;
        border-color: #f59e0b !important;
        color: #fbbf24 !important;
    }

        .selected-store-locked:hover[b-hemstpzl4n] {
            background: rgba(245, 158, 11, 0.3) !important;
        }

    /* Status badge Dark Mode */
    .status-badge.active[b-hemstpzl4n] {
        background: #10b981;
        color: white;
    }

    .status-badge.locked[b-hemstpzl4n] {
        background: #f59e0b;
        color: white;
    }

    /* Mobile styles dark mode adjustments */
    @media (max-width: 1400px) {
        .sidebar[b-hemstpzl4n] {
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        }
    }
}
/* _content/PersoneelPlanner/Layouts/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-alsr00jaz0] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

    .navbar-toggler:checked[b-alsr00jaz0] {
        background-color: rgba(255, 255, 255, 0.5);
    }

.top-row[b-alsr00jaz0] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-alsr00jaz0] {
    font-size: 1.1rem;
}

.bi[b-alsr00jaz0] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-alsr00jaz0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-alsr00jaz0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-alsr00jaz0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-alsr00jaz0] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-alsr00jaz0] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-alsr00jaz0] {
        padding-bottom: 1rem;
    }

    .nav-item[b-alsr00jaz0]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

    .nav-item[b-alsr00jaz0]  a.active {
        background-color: rgba(255,255,255,0.37);
        color: white;
    }

    .nav-item[b-alsr00jaz0]  .nav-link:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
    }

.nav-scrollable[b-alsr00jaz0] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-alsr00jaz0] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-alsr00jaz0] {
        display: none;
    }

    .nav-scrollable[b-alsr00jaz0] {
        /* Never collapse the sidebar for wide screens */
        display: block;
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/PersoneelPlanner/Pages/Account/LoginView.razor.rz.scp.css */
/* Login wrapper for full viewport styling */
.login-wrapper[b-sn4ch78czq] {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2563eb 100%);
    padding: 2rem 1rem;
    overflow: hidden;
}

/* Main login container */
.login-container[b-sn4ch78czq] {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp-b-sn4ch78czq 0.6s ease-out;
}

@keyframes fadeInUp-b-sn4ch78czq {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header section */
.login-header[b-sn4ch78czq] {
    text-align: center;
    margin-bottom: 2.5rem;
}

.logo[b-sn4ch78czq] {
    max-width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.welcome-title[b-sn4ch78czq] {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.025em;
}

.welcome-subtitle[b-sn4ch78czq] {
    font-size: 1rem;
    color: #718096;
    margin: 0;
    font-weight: 400;
}

/* Error message styling */
.error-message[b-sn4ch78czq] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    border: 1px solid #fc8181;
    border-radius: 12px;
    color: #c53030;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: slideIn-b-sn4ch78czq 0.3s ease-out;
}

.error-icon[b-sn4ch78czq] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@keyframes slideIn-b-sn4ch78czq {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Form styling */
.login-form[b-sn4ch78czq] {
    width: 100%;
}

.form-group[b-sn4ch78czq] {
    margin-bottom: 1.5rem;
}

.form-label[b-sn4ch78czq] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.label-icon[b-sn4ch78czq] {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
}

.form-input[b-sn4ch78czq] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: #2d3748;
    background: #ffffff;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

    .form-input:focus[b-sn4ch78czq] {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(54, 116, 181, 0.1);
        transform: translateY(-1px);
    }

    .form-input[b-sn4ch78czq]::placeholder {
        color: #a0aec0;
        font-weight: 400;
    }

/* Login button */
.login-button[b-sn4ch78czq] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

    .login-button:hover[b-sn4ch78czq] {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(54, 116, 181, 0.3);
    }

    .login-button:active[b-sn4ch78czq] {
        transform: translateY(0);
    }

.button-text[b-sn4ch78czq] {
    position: relative;
    z-index: 2;
}

.button-icon[b-sn4ch78czq] {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
}

/* Button ripple effect */
.login-button[b-sn4ch78czq]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.login-button:hover[b-sn4ch78czq]::before {
    left: 100%;
}

/* Footer */
.login-footer[b-sn4ch78czq] {
    margin-top: 2rem;
    text-align: center;
}

.footer-text[b-sn4ch78czq] {
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
    font-weight: 400;
}

/* Background decoration */
.background-decoration[b-sn4ch78czq] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle[b-sn4ch78czq] {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-b-sn4ch78czq 6s ease-in-out infinite;
}

.circle-1[b-sn4ch78czq] {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.circle-2[b-sn4ch78czq] {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

.circle-3[b-sn4ch78czq] {
    width: 150px;
    height: 150px;
    top: 50%;
    left: -75px;
    animation-delay: 4s;
}

@keyframes float-b-sn4ch78czq {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive design */
@media (max-width: 480px) {
    .login-container[b-sn4ch78czq] {
        margin: 1rem;
        padding: 2rem 1.5rem;
        max-width: none;
    }

    .welcome-title[b-sn4ch78czq] {
        font-size: 1.75rem;
    }

    .logo[b-sn4ch78czq] {
        max-width: 150px;
    }

    .decoration-circle[b-sn4ch78czq] {
        display: none;
    }
}

@media (max-width: 320px) {
    .login-container[b-sn4ch78czq] {
        padding: 1.5rem 1rem;
    }

    .welcome-title[b-sn4ch78czq] {
        font-size: 1.5rem;
    }
}
/* _content/PersoneelPlanner/Pages/Account/Pages/AccessDenied.razor.rz.scp.css */
.warning-box[b-fpduzhsjln] {
    border: 1px solid #f5c6cb;
    background-color: #f8d7da;
    color: #721c24;
    padding: 20px;
    margin: 50px auto;
    max-width: 60ch;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.warning-title[b-fpduzhsjln] {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.warning-box span[b-fpduzhsjln] {
    display: block;
    margin-bottom: 20px;
}

.warning-box button[b-fpduzhsjln] {
    display: block;
    max-width: 60ch;
    width: 40%;
    margin: 0 auto;
}
/* _content/PersoneelPlanner/Pages/Account/Pages/Smsverification.razor.rz.scp.css */
.login-container[b-jkrdkguad9] {
    width: 80%;
    max-width: 50rem;
    margin: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 75px 50px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo[b-jkrdkguad9] {
    max-width: 234px;
    margin-bottom: 20px;
}

.title[b-jkrdkguad9] {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.description[b-jkrdkguad9] {
    font-size: 1em;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

.login-input[b-jkrdkguad9] {
    width: 100%;
    max-width: 505.54px;
}

.input-container[b-jkrdkguad9] {
    width: 100%;
    margin-bottom: 15px;
}

.input[b-jkrdkguad9] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
}

    .input:focus[b-jkrdkguad9] {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

.login-button[b-jkrdkguad9] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

    .login-button:hover[b-jkrdkguad9] {
        background-color: #3e8e41;
    }

[b-jkrdkguad9]::placeholder {
    color: #aaa;
}
/* _content/PersoneelPlanner/Pages/Afsluit/Afsluitscherm.razor.rz.scp.css */
.buttons-group[b-zptt2nxuya] {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.date-navigation[b-zptt2nxuya] {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.nav-button[b-zptt2nxuya] {
    padding: 6px 12px;
    background-color: #1976d2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

    .nav-button.selected[b-zptt2nxuya] {
        background-color: #1565c0;
        font-weight: bold;
    }
/* _content/PersoneelPlanner/Pages/Calendar/CalenderView.razor.rz.scp.css */
/* CalenderView.razor.css - Modern Professional Styling */

.calendar[b-9gnxd7o02m] {
    font-size: 0.875rem;
    width: 100%;
    height: calc(100% - 1rem);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

    .calendar > *[b-9gnxd7o02m] {
        min-width: max-content;
        width: 100%;
    }

.no-content-wrapper[b-9gnxd7o02m] {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
}

.no-content[b-9gnxd7o02m] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 2px solid #3b82f6;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(10px);
}

    .no-content span[b-9gnxd7o02m] {
        font-weight: 600;
        color: #1e40af;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        .no-content span i[b-9gnxd7o02m] {
            color: #3b82f6;
            filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.2));
        }

/* Loading animation */
@keyframes shimmer-b-9gnxd7o02m {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 468px 0;
    }
}

.calendar.loading[b-9gnxd7o02m] {
    background: linear-gradient( 90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75% );
    background-size: 400% 100%;
    animation: shimmer-b-9gnxd7o02m 1.5s infinite;
}

/* Responsive design */
@media (max-width: 1024px) {
    .calendar[b-9gnxd7o02m] {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .calendar[b-9gnxd7o02m] {
        font-size: 0.75rem;
        border-radius: 12px;
    }

    .no-content[b-9gnxd7o02m] {
        padding: 1.5rem;
        border-radius: 12px;
    }

        .no-content span[b-9gnxd7o02m] {
            font-size: 1rem;
        }
}

@media (max-width: 480px) {
    .calendar[b-9gnxd7o02m] {
        font-size: 0.7rem;
        border-radius: 8px;
    }

    .no-content[b-9gnxd7o02m] {
        padding: 1rem;
        border-radius: 8px;
    }

        .no-content span[b-9gnxd7o02m] {
            font-size: 0.9rem;
            flex-direction: column;
            text-align: center;
        }
}

/* Print styles */
@media print {
    .calendar[b-9gnxd7o02m] {
        background: white;
        box-shadow: none;
        padding: 0;
        font-size: 0.7rem;
    }

    .no-content[b-9gnxd7o02m] {
        background: white;
        border: 1px solid #000;
        box-shadow: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .calendar[b-9gnxd7o02m] {
        background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
        color: #f9fafb;
    }

    .no-content[b-9gnxd7o02m] {
        background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
        border-color: #4b5563;
        color: #f9fafb;
    }

        .no-content span i[b-9gnxd7o02m] {
            color: #60a5fa;
        }
}

/* Animation for calendar appearance */
@keyframes fadeInUp-b-9gnxd7o02m {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calendar[b-9gnxd7o02m] {
    animation: fadeInUp-b-9gnxd7o02m 0.5s ease-out;
}

    /* Focus and accessibility improvements */
    .calendar:focus-visible[b-9gnxd7o02m] {
        outline: 3px solid #3b82f6;
        outline-offset: 2px;
    }

/* High contrast mode support */
@media (prefers-contrast: high) {
    .calendar[b-9gnxd7o02m] {
        background: white;
        border: 2px solid #000;
    }

    .no-content[b-9gnxd7o02m] {
        background: white;
        border: 2px solid #000;
        color: #000;
    }
}
/* _content/PersoneelPlanner/Pages/Dashboard/DashboardPage.razor.rz.scp.css */
.dashboard-flexible-grid[b-ymww142j9e] {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
}

    /* Width classes for flexible sizing */
    .dashboard-flexible-grid .card-full[b-ymww142j9e] {
        grid-column: span 12;
    }

    .dashboard-flexible-grid .card-half[b-ymww142j9e] {
        grid-column: span 6;
    }

    .dashboard-flexible-grid .card-third[b-ymww142j9e] {
        grid-column: span 4;
    }

    .dashboard-flexible-grid .card-quarter[b-ymww142j9e] {
        grid-column: span 3;
    }

    .dashboard-flexible-grid .card-two-thirds[b-ymww142j9e] {
        grid-column: span 8;
    }

@media (max-width: 768px) {
    .dashboard-flexible-grid[b-ymww142j9e] {
        grid-template-columns: 100%; /* Stack in one column */
    }

        .dashboard-flexible-grid .card-full[b-ymww142j9e],
        .dashboard-flexible-grid .card-half[b-ymww142j9e],
        .dashboard-flexible-grid .card-third[b-ymww142j9e],
        .dashboard-flexible-grid .card-quarter[b-ymww142j9e],
        .dashboard-flexible-grid .card-two-thirds[b-ymww142j9e] {
            grid-column: span 1;
        }
}
/* _content/PersoneelPlanner/Pages/Error/ErrorView.razor.rz.scp.css */
.error-container[b-jblk9imvsw] {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.error-image[b-jblk9imvsw] {
    max-width: 200px;
    margin-bottom: 20px;
}

h1[b-jblk9imvsw] {
    color: #721c24;
    font-size: 24px;
}

p[b-jblk9imvsw] {
    color: #721c24;
    font-size: 16px;
}

.btn-primary[b-jblk9imvsw] {
    background-color: #721c24;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .btn-primary:hover[b-jblk9imvsw] {
        background-color: #5a1a1f;
    }
/* _content/PersoneelPlanner/Pages/NoStoreView.razor.rz.scp.css */
.error-container[b-d2dm8auu6r] {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.error-image[b-d2dm8auu6r] {
    max-width: 200px;
    margin-bottom: 20px;
}

h1[b-d2dm8auu6r] {
    color: #721c24;
    font-size: 24px;
}

p[b-d2dm8auu6r] {
    color: #721c24;
    font-size: 16px;
}

.btn-primary[b-d2dm8auu6r] {
    background-color: #721c24;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .btn-primary:hover[b-d2dm8auu6r] {
        background-color: #5a1a1f;
    }
/* _content/PersoneelPlanner/Pages/Planning/PlanningView.razor.rz.scp.css */
.header-container[b-c3kqopdcz1] {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    row-gap: 1.5rem; /* space between rows if wrap occurs */
}

.left[b-c3kqopdcz1] {
    justify-self: start;
}

.center[b-c3kqopdcz1] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-self: center;
    padding-left: 0px;
    padding-right: 100px;
    justify-items: center;
}

.right[b-c3kqopdcz1] {
    justify-self: end;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Main container fixes */
.planning-page[b-c3kqopdcz1] {
    height: calc(100vh - 2rem); /* Subtract parent padding (1rem top + 1rem bottom) */
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.content[b-c3kqopdcz1] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1; /* Take remaining space */
    overflow: hidden; /* Prevent content container from scrolling */
    min-height: 0; /* Important for flex children to shrink */
}

/* Make chart containers scrollable */
.chart-container[b-c3kqopdcz1] {
    flex: 1;
    min-height: 0; /* Important for flex children */
}

.btn-group-custom[b-c3kqopdcz1] {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.btn-custom[b-c3kqopdcz1] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: 1px solid black;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 0.65rem;
}

    .btn-custom:hover:not(:disabled)[b-c3kqopdcz1] {
        background-color: var(--primary);
        transform: translateY(-2px);
        color: black;
        border: 1px solid var(--primary);
    }

    .btn-custom:disabled[b-c3kqopdcz1] {
        background-color: grey;
        cursor: not-allowed;
        opacity: 0.7;
        color: black;
    }

/* Optional: responsive fallback */
@media (max-width: 768px) {
    .header-container[b-c3kqopdcz1] {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        text-align: center;
    }

    .left[b-c3kqopdcz1], .center[b-c3kqopdcz1], .right[b-c3kqopdcz1] {
        justify-self: center;
    }
}

@media (max-width: 1400px) {
    .center[b-c3kqopdcz1] {
        padding-left: 100px;
        padding-right: 0px
    }

    .btn-custom .btn-text[b-c3kqopdcz1] {
        display: none;
    }
}

.no-employees-message[b-c3kqopdcz1] {
    padding: 2rem;
    text-align: center;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    margin: 1rem;
    height: 100%;
    justify-items: center;
    align-content: center;
}

.empty-state[b-c3kqopdcz1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #64748b;
}

.empty-icon[b-c3kqopdcz1] {
    font-size: 48px;
    opacity: 0.5;
}

.empty-state p[b-c3kqopdcz1] {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
}

.empty-state small[b-c3kqopdcz1] {
    font-size: 14px;
    color: #9ca3af;
}

.mobile-planner[b-c3kqopdcz1] {
    display: none;
}

.desktop-planner[b-c3kqopdcz1] {
    display: contents; /* Use 'contents' to make the wrapper not affect layout */
}

@media (max-width: 768px) {
    .desktop-planner[b-c3kqopdcz1] {
        display: none;
    }

    .mobile-planner[b-c3kqopdcz1] {
        display: block;
        height: 100%;
    }

    .planning-page[b-c3kqopdcz1], .content[b-c3kqopdcz1] {
        display: block;
        height: auto;
        overflow: visible;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .planning-page[b-c3kqopdcz1] {
        background: #1f2937;
        color: #f9fafb;
    }

    .content[b-c3kqopdcz1] {
        background: #1f2937;
    }

    .btn-custom[b-c3kqopdcz1] {
        background-color: var(--primary-color);
        color: #ffffff;
        border-color: #4b5563;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    .btn-custom:hover:not(:disabled)[b-c3kqopdcz1] {
        background-color: #2563eb;
        color: #ffffff;
        border-color: #2563eb;
    }

    .btn-custom:disabled[b-c3kqopdcz1] {
        background-color: #6b7280;
        color: #9ca3af;
        border-color: #6b7280;
    }

    .no-employees-message[b-c3kqopdcz1] {
        background-color: #374151;
        border-color: #4b5563;
        color: #f9fafb;
    }

    .empty-state[b-c3kqopdcz1] {
        color: #9ca3af;
    }

    .empty-state p[b-c3kqopdcz1] {
        color: #f9fafb;
    }

    .empty-state small[b-c3kqopdcz1] {
        color: #9ca3af;
    }

    .empty-icon[b-c3kqopdcz1] {
        opacity: 0.7;
    }
}
/* _content/PersoneelPlanner/Pages/Verlof/VerlofView.razor.rz.scp.css */
.verlof-container[b-le54vyh8ve] {
    margin: 0 auto;
    background: var(--background-color);
    color: var(--text-color);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
}

.verlof-header[b-le54vyh8ve] {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    position: relative;
}

.header-content[b-le54vyh8ve] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-left[b-le54vyh8ve] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar[b-le54vyh8ve] {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    backdrop-filter: blur(10px);
}

.header-title h1[b-le54vyh8ve] {
    font-size: 28px;
    margin-bottom: 5px;
}

.header-title p[b-le54vyh8ve] {
    opacity: 0.9;
    font-size: 16px;
}

.year-selector[b-le54vyh8ve] {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.year-btn[b-le54vyh8ve] {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .year-btn:hover[b-le54vyh8ve] {
        background: rgba(255,255,255,0.2);
    }

    .year-btn:disabled[b-le54vyh8ve] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.current-year[b-le54vyh8ve] {
    font-size: 20px;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
}

.stats-section[b-le54vyh8ve] {
    padding: 30px;
    background: var(--background-color);
    color: var(--text-color);
}

.stats-grid[b-le54vyh8ve] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.stat-card[b-le54vyh8ve] {
    background: var(--hover-color);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .stat-card:hover[b-le54vyh8ve] {
        transform: translateY(-5px);
    }

.stat-header[b-le54vyh8ve] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stat-title[b-le54vyh8ve] {
    font-size: 16px;
    font-weight: 600;
}

.stat-icon[b-le54vyh8ve] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.verlof-icon[b-le54vyh8ve] {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
}

.recup-icon[b-le54vyh8ve] {
    background: linear-gradient(45deg, #43e97b, #38f9d7);
}

.progress-container[b-le54vyh8ve] {
    margin-bottom: 15px;
}

.progress-info[b-le54vyh8ve] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.progress-bar[b-le54vyh8ve] {
    height: 12px;
    background: #e0e7ff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill[b-le54vyh8ve] {
    height: 100%;
    border-radius: 10px;
    transition: width 0.8s ease;
    position: relative;
}

.verlof-progress[b-le54vyh8ve] {
    background: linear-gradient(90deg, #adde52, #4facfe, #f7d574, #ff6459);
}

.recup-progress[b-le54vyh8ve] {
    background: linear-gradient(90deg, #43e97b, #38f9d7);
}

.legend[b-le54vyh8ve] {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.legend-item[b-le54vyh8ve] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.legend-color[b-le54vyh8ve] {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.goedgekeurd[b-le54vyh8ve] {
    background: #adde52;
}

.ingediend[b-le54vyh8ve] {
    background: #f7d574;
}

.niet-goedgekeurd[b-le54vyh8ve] {
    background: #ff6459;
}

.beschikbaar[b-le54vyh8ve] {
    background: #4facfe;
}

.table-section[b-le54vyh8ve] {
    padding: 30px;
}

.table-header[b-le54vyh8ve] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.table-title[b-le54vyh8ve] {
    font-size: 24px;
    font-weight: 600;
}

.verlof-id[b-le54vyh8ve] {
    font-weight: 600;
    cursor: pointer;
}

    .verlof-id:hover[b-le54vyh8ve] {
        text-decoration: underline;
    }

.verlof-type[b-le54vyh8ve] {
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
}

.type-ziekte[b-le54vyh8ve] {
    background: #fee2e2;
    color: #dc2626;
}

.type-verlof[b-le54vyh8ve] {
    background: #dbeafe;
    color: #2563eb;
}

.type-recup[b-le54vyh8ve] {
    background: #d1fae5;
    color: #059669;
}

.custom-table[b-le54vyh8ve] {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

    .custom-table .table th[b-le54vyh8ve] {
        background: #f8f9ff;
        border-bottom: 2px solid #e0e7ff;
        font-weight: 600;
    }

    .custom-table .table tbody tr:hover[b-le54vyh8ve] {
        background: #f8f9ff;
    }

@media (max-width: 768px) {
    .header-content[b-le54vyh8ve] {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid[b-le54vyh8ve] {
        grid-template-columns: 1fr;
    }
}

/* Add these styles to VerlofView.razor.css */
.no-data-message[b-le54vyh8ve] {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    border-radius: 15px;
    margin: 0 30px 30px;
}

/* Optional: Style the Blazorise Accordion to match the page design */
.accordion[b-le54vyh8ve] {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    background-color: var(--hover-color) !important;
}

.accordion-item .accordion-header .btn[b-le54vyh8ve] {
    color: var(--text-color);
    border-bottom: 1px solid #e0e7ff;
}

    .accordion-item .accordion-header .btn:not(.collapsed)[b-le54vyh8ve] {
        background-color: var(--hover-color);
    }
