/* /Components/App.razor.rz.scp.css */

html[b-uq139terf8], body[b-uq139terf8] {
    margin: 0;
    padding: 0;
}

*[b-uq139terf8] {
    box-sizing: border-box;
}
/* /Components/Layout/LoginLayout.razor.rz.scp.css */
.login-layout[b-mjvzlt8gl1] {
    min-height: 100vh;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.menu-toggle-checkbox[b-ugeuu2sgce] {
    display: none;
}

/* ══════════════════════════════
   TOPBAR MOBILE
══════════════════════════════ */
.mobile-topbar[b-ugeuu2sgce] {
    display: none;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .94);
    position: sticky;
    top: 0;
    z-index: 1200;
    border-bottom: 1px solid #d6ebe9;
    box-shadow: 0 8px 24px rgba(18, 52, 86, .10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* ── Bouton hamburger — 3 lignes SVG ── */
.menu-toggle[b-ugeuu2sgce] {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f1fbfa;
    border: 1px solid #cfe2e5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}

    .menu-toggle:hover[b-ugeuu2sgce] {
        background: #e5f7f5;
        border-color: #9dd4cf;
    }

.hamburger-line[b-ugeuu2sgce] {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #1b8f87;
    transition: transform 0.2s, opacity 0.2s;
}

/* ── Brand dans la topbar ── */
.topbar-brand[b-ugeuu2sgce] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.topbar-brand-icon[b-ugeuu2sgce] {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, #1bb1a7, #38c2b8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 14px rgba(27, 177, 167, .24);
    flex-shrink: 0;
}

.mobile-brand-logo[b-ugeuu2sgce] {
    display: block;
    width: 85px;
    height: auto;
    object-fit: contain;
}

/* ══════════════════════════════
   APP SHELL
══════════════════════════════ */
.app-shell[b-ugeuu2sgce] {
    min-height: 100vh;
    display: flex;
    background: linear-gradient(180deg, #f8fcfc 0%, #edf7f6 100%);
}

/* ══════════════════════════════
   SIDEBAR
══════════════════════════════ */
.sidebar[b-ugeuu2sgce] {
    width: 300px;
    min-width: 300px;
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(246, 251, 250, .96));
    color: #123456;
    padding: 24px 16px;
    border-right: 1px solid #d6ebe9;
    box-shadow: 8px 0 32px rgba(18, 52, 86, .08);
    z-index: 1100;
    position: relative;
}

    .sidebar[b-ugeuu2sgce]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #1bb1a7, #7fd5c8);
    }

/* ══════════════════════════════
   MAIN CONTENT
══════════════════════════════ */
.main-content[b-ugeuu2sgce] {
    flex: 1;
    min-width: 0;
    padding: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
}

.sidebar-overlay[b-ugeuu2sgce] {
    display: none;
}

/* ══════════════════════════════
   BLAZOR ERROR
══════════════════════════════ */
#blazor-error-ui[b-ugeuu2sgce] {
    background: rgba(15, 23, 42, 0.97);
    color: #fca5a5;
    border-top: 1px solid rgba(239, 68, 68, 0.30);
    bottom: 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.40);
    display: none;
    left: 0;
    padding: 0.85rem 1.4rem;
    position: fixed;
    width: 100%;
    z-index: 2000;
    font-size: 0.9rem;
    backdrop-filter: blur(8px);
}

    #blazor-error-ui .dismiss[b-ugeuu2sgce] {
        cursor: pointer;
        position: absolute;
        right: 0.85rem;
        top: 0.55rem;
        opacity: 0.6;
        transition: opacity 0.15s;
    }

        #blazor-error-ui .dismiss:hover[b-ugeuu2sgce] {
            opacity: 1;
        }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
    .mobile-topbar[b-ugeuu2sgce] {
        display: flex;
    }

    .app-shell[b-ugeuu2sgce] {
        display: block;
    }

    .sidebar[b-ugeuu2sgce] {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        min-width: 300px;
        height: 100vh;
        min-height: 100vh;
        transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 72px;
    }

    .main-content[b-ugeuu2sgce] {
        padding: 0;
    }

    .menu-toggle-checkbox:checked ~ .app-shell .sidebar[b-ugeuu2sgce] {
        left: 0;
    }

    .menu-toggle-checkbox:checked ~ .app-shell .sidebar-overlay[b-ugeuu2sgce] {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(18, 52, 86, .42);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 1000;
    }
}

@media (max-width: 480px) {
    .sidebar[b-ugeuu2sgce] {
        width: min(calc(100vw - 24px), 292px);
        min-width: 0;
        max-width: none;
        left: -312px;
        padding-right: 6px;
        padding-left: 12px;
        box-sizing: border-box;
    }

    .mobile-topbar[b-ugeuu2sgce] {
        padding: 10px 14px;
    }

    .menu-toggle[b-ugeuu2sgce] {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .topbar-brand-icon[b-ugeuu2sgce] {
        width: 30px;
        height: 30px;
        font-size: 0.65rem;
        border-radius: 8px;
    }

    .mobile-brand-logo[b-ugeuu2sgce] {
        width: 75px;
    }
}
/* /Components/Layout/SideMenu.razor.rz.scp.css */
.sm-header[b-syvdy1fbxm] {
    margin-bottom: 24px;
}

.sm-user[b-syvdy1fbxm] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 12px 13px;
    overflow: hidden;
    border: 1px solid rgba(190, 224, 221, .95);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(246, 251, 250, .95));
    box-shadow: 0 12px 28px rgba(18, 52, 86, .07), 0 1px 0 rgba(255, 255, 255, .9) inset;
}

.sm-user[b-syvdy1fbxm]::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(27, 177, 167, .07);
    content: "";
    pointer-events: none;
    transform: translate(26px, -30px);
}

.sm-avatar[b-syvdy1fbxm] {
    position: relative;
    z-index: 1;
    display: grid;
    width: 40px;
    height: 40px;
    min-width: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 12px;
    background: linear-gradient(135deg, #1bb1a7, #38c2b8);
    color: #fff;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    box-shadow: 0 9px 20px rgba(27, 177, 167, .22);
}

.sm-user > div:last-child[b-syvdy1fbxm] {
    min-width: 0;
}

.sm-username[b-syvdy1fbxm] {
    overflow: hidden;
    color: #123456;
    font-size: .88rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sm-email[b-syvdy1fbxm] {
    margin-top: 3px;
    overflow: hidden;
    color: #789098;
    font-size: .72rem;
    font-weight: 550;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sm-nav[b-syvdy1fbxm] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sm-section-label[b-syvdy1fbxm] {
    margin-bottom: 7px;
    padding: 0 13px;
    color: #789098;
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.sm-divider[b-syvdy1fbxm] {
    height: 1px;
    margin: 12px 8px 8px;
    background: linear-gradient(90deg, transparent, #cfe2e5 15%, #cfe2e5 85%, transparent);
}

[b-syvdy1fbxm] .sm-item {
    position: relative;
    display: flex !important;
    width: 100%;
    min-height: 50px;
    align-items: center !important;
    gap: 12px;
    padding: 8px 10px;
    box-sizing: border-box;
    border: 1px solid transparent;
    border-radius: 13px;
    background: transparent !important;
    color: #526f78 !important;
    cursor: pointer;
    font-family: inherit;
    font-size: .9rem;
    font-weight: 650;
    line-height: 1.3;
    text-align: left;
    text-decoration: none !important;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

[b-syvdy1fbxm] .sm-item:hover {
    border-color: rgba(190, 224, 221, .8) !important;
    background: rgba(255, 255, 255, .78) !important;
    color: #1b7973 !important;
    box-shadow: 0 8px 20px rgba(18, 52, 86, .055);
    text-decoration: none !important;
    transform: translateY(-1px);
}

[b-syvdy1fbxm] .sm-item.active {
    border-color: #b8dfdb !important;
    background: linear-gradient(135deg, #eaf8f6 0%, #f4fbfa 100%) !important;
    color: #146f69 !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 24px rgba(27, 177, 167, .12), 0 1px 0 rgba(255, 255, 255, .9) inset;
}

[b-syvdy1fbxm] .sm-icon {
    display: grid !important;
    width: 34px;
    height: 34px;
    min-width: 34px;
    place-items: center;
    border: 1px solid #dbeceb;
    border-radius: 10px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 5px 12px rgba(18, 52, 86, .05);
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

[b-syvdy1fbxm] .sm-item:hover .sm-icon {
    border-color: #b8dfdb;
    background: #f5fbfa;
    transform: scale(1.03);
}

[b-syvdy1fbxm] .sm-item.active .sm-icon {
    border-color: transparent;
    background: linear-gradient(135deg, #1bb1a7, #38c2b8);
    box-shadow: 0 8px 18px rgba(27, 177, 167, .22);
}

[b-syvdy1fbxm] .sm-icon img {
    display: block;
    width: 17px;
    height: 17px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(28%) sepia(15%) saturate(1115%) hue-rotate(145deg) brightness(91%);
    opacity: .76;
    transition: filter 180ms ease, opacity 180ms ease;
}

[b-syvdy1fbxm] .sm-item:hover .sm-icon img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(45%) saturate(760%) hue-rotate(128deg) brightness(92%);
    opacity: 1;
}

[b-syvdy1fbxm] .sm-item.active .sm-icon img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

[b-syvdy1fbxm] .sm-label {
    flex: 1;
    overflow: hidden;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[b-syvdy1fbxm] .sm-chevron {
    display: grid;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 7px;
    color: #76aaa6;
    font-size: 1rem;
    line-height: 1;
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

[b-syvdy1fbxm] .sm-item:hover .sm-chevron,
[b-syvdy1fbxm] .sm-item.active .sm-chevron {
    opacity: 1;
    transform: translateX(1px);
}

[b-syvdy1fbxm] .sm-item.active .sm-chevron {
    background: rgba(27, 177, 167, .1);
    color: #1b8f87;
}

[b-syvdy1fbxm] .sm-logout {
    color: #a34b4b !important;
}

[b-syvdy1fbxm] .sm-logout .sm-icon {
    border-color: #f0d4d4;
    background: #fff7f7;
}

[b-syvdy1fbxm] .sm-logout .sm-icon img {
    filter: brightness(0) saturate(100%) invert(39%) sepia(28%) saturate(1238%) hue-rotate(313deg) brightness(91%);
    opacity: .8;
}

[b-syvdy1fbxm] .sm-logout:hover {
    border-color: #efc5c5 !important;
    background: #fff7f7 !important;
    color: #923c3c !important;
}

[b-syvdy1fbxm] .sm-logout:hover .sm-icon {
    border-color: #e8bbbb;
    background: #ffeded;
}

[b-syvdy1fbxm] .sm-logout:hover .sm-icon img {
    filter: brightness(0) saturate(100%) invert(39%) sepia(28%) saturate(1238%) hue-rotate(313deg) brightness(91%);
    opacity: 1;
}

[b-syvdy1fbxm] button.sm-item {
    border: 1px solid transparent;
    background: transparent !important;
}

[b-syvdy1fbxm] .sm-item:focus-visible {
    outline: 3px solid rgba(27, 177, 167, .18);
    outline-offset: 2px;
}

@media (max-width: 480px) {
    [b-syvdy1fbxm] .sm-item {
        padding-right: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    [b-syvdy1fbxm] .sm-item,
    [b-syvdy1fbxm] .sm-icon,
    [b-syvdy1fbxm] .sm-icon img,
    [b-syvdy1fbxm] .sm-chevron {
        transition: none;
    }
}
/* /Components/LoadingSpinner.razor.rz.scp.css */
.loading-spinner[b-bwlg9mldop] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 68px;
    color: #dbeafe;
    font-weight: 700;
}

.loading-spinner.inline[b-bwlg9mldop] {
    width: auto;
    min-height: 0;
    gap: 8px;
}

.loading-icon[b-bwlg9mldop] {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 2px solid rgba(191, 219, 254, 0.28);
    border-top-color: #ffffff;
    border-right-color: #93c5fd;
    box-shadow: 0 0 18px rgba(96, 165, 250, 0.32);
    animation: loading-spin-b-bwlg9mldop 0.75s linear infinite;
    flex: 0 0 auto;
}

.inline .loading-icon[b-bwlg9mldop] {
    width: 18px;
    height: 18px;
}

.loading-text[b-bwlg9mldop] {
    color: inherit;
    font-size: 0.92rem;
    line-height: 1.2;
}

.inline .loading-text[b-bwlg9mldop] {
    font-size: inherit;
}

@keyframes loading-spin-b-bwlg9mldop {
    to {
        transform: rotate(360deg);
    }
}
/* /Components/Pages/AbsenceJustifiee.razor.rz.scp.css */
.leave-page[b-fbzqi9zxy2] { position:relative; display:flex; min-height:100vh; justify-content:center; align-items:flex-start; padding:40px 24px; overflow:hidden; box-sizing:border-box; background:radial-gradient(circle at 18% 18%,rgba(27,177,167,.22),transparent 24rem),radial-gradient(circle at 82% 78%,rgba(18,52,86,.10),transparent 24rem),linear-gradient(180deg,#f8fcfc 0%,#edf7f6 100%); color:#123456; font-family:"DM Sans","Segoe UI",sans-serif; }
.leave-page[b-fbzqi9zxy2]::before,.leave-page[b-fbzqi9zxy2]::after { position:absolute; border-radius:50%; content:""; pointer-events:none; }
.leave-page[b-fbzqi9zxy2]::before { top:-170px; right:-130px; width:420px; height:420px; background:rgba(27,177,167,.14); }
.leave-page[b-fbzqi9zxy2]::after { bottom:-190px; left:-150px; width:460px; height:460px; background:rgba(18,52,86,.07); }
.leave-card[b-fbzqi9zxy2] { position:relative; z-index:1; width:min(100%,1100px); padding:34px 30px 30px; overflow:hidden; box-sizing:border-box; border:1px solid rgba(190,224,221,.95); border-radius:24px; background:linear-gradient(180deg,rgba(255,255,255,.97),rgba(250,254,253,.93)); box-shadow:0 26px 70px rgba(18,52,86,.14),0 1px 0 rgba(255,255,255,.9) inset; backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); }
.leave-card[b-fbzqi9zxy2]::before { position:absolute; inset:0 0 auto; height:4px; background:linear-gradient(90deg,#1bb1a7,#7fd5c8); content:""; }
.leave-top[b-fbzqi9zxy2] { margin-bottom:22px; }
.leave-title-row[b-fbzqi9zxy2] { position:relative; display:flex; min-height:44px; justify-content:center; align-items:center; margin:2px 0 28px; }
.title[b-fbzqi9zxy2] { margin:0; color:#123456; font-size:1.9rem; font-weight:850; letter-spacing:-.03em; line-height:1.1; text-align:center; }
.user-info[b-fbzqi9zxy2],.request-panel[b-fbzqi9zxy2],.history-card[b-fbzqi9zxy2] { border:1px solid #d6ebe9; background:linear-gradient(180deg,#fff,#f8fcfb); box-shadow:0 9px 18px rgba(18,52,86,.04); }
.user-info[b-fbzqi9zxy2] { padding:14px 16px; border-radius:12px; transition:border-color 150ms ease,box-shadow 150ms ease,transform 150ms ease; }
.user-info:hover[b-fbzqi9zxy2] { border-color:#b7deda; box-shadow:0 12px 24px rgba(18,52,86,.07); transform:translateY(-1px); }
.info-label[b-fbzqi9zxy2] { display:block; margin-bottom:5px; color:#1b8f87; font-size:.7rem; font-weight:800; letter-spacing:.05em; text-transform:uppercase; }
.info-value[b-fbzqi9zxy2] { color:#123456; font-size:.98rem; font-weight:700; overflow-wrap:anywhere; }
.leave-primary-button[b-fbzqi9zxy2] { min-height:44px; padding:0 18px; border:0; border-radius:8px; background:linear-gradient(135deg,#1bb1a7,#38c2b8); color:#fff; font-size:.9rem; font-weight:800; cursor:pointer; box-shadow:0 14px 28px rgba(27,177,167,.24); transition:transform 150ms ease,box-shadow 150ms ease,background 150ms ease; }
.leave-title-row .leave-primary-button[b-fbzqi9zxy2] { position:absolute; top:0; right:0; }
.leave-primary-button:hover:not(:disabled)[b-fbzqi9zxy2] { background:linear-gradient(135deg,#159a92,#2eb1a8); box-shadow:0 18px 36px rgba(27,177,167,.32); transform:translateY(-1px); }
.leave-primary-button:focus-visible[b-fbzqi9zxy2] { outline:3px solid rgba(27,177,167,.22); outline-offset:2px; }
.leave-primary-button:disabled[b-fbzqi9zxy2] { cursor:wait; opacity:.72; transform:none; }
.submit-button[b-fbzqi9zxy2] { display:grid; width:100%; place-items:center; margin-top:20px; }
.error[b-fbzqi9zxy2],.success[b-fbzqi9zxy2] { margin:0 0 18px; padding:11px 12px; border-radius:8px; font-size:.86rem; font-weight:700; }
.error[b-fbzqi9zxy2] { border:1px solid #efc5c5; background:#fff7f7; color:#a43d3d; }
.success[b-fbzqi9zxy2] { border:1px solid #b8dfd4; background:#f0fbf7; color:#247260; }
.request-panel[b-fbzqi9zxy2],.history-card[b-fbzqi9zxy2] { padding:18px; border-radius:16px; }
.request-panel[b-fbzqi9zxy2] { margin-bottom:20px; }
.panel-header[b-fbzqi9zxy2] { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:18px; }
.panel-header h2[b-fbzqi9zxy2] { margin:0; color:#123456; font-size:1.15rem; font-weight:800; }
.panel-badge[b-fbzqi9zxy2] { padding:7px 11px; border:1px solid #bde4df; border-radius:999px; background:#effaf8; color:#1b7973; font-size:.8rem; font-weight:800; white-space:nowrap; }
.form-grid[b-fbzqi9zxy2] { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.date-field-card[b-fbzqi9zxy2] { min-width:0; }
.date-field-card > label[b-fbzqi9zxy2],.image-field-title[b-fbzqi9zxy2] { display:block; margin-bottom:9px; color:#607b84; font-size:.72rem; font-weight:800; letter-spacing:.03em; text-transform:uppercase; }
.date-inline-row[b-fbzqi9zxy2] { display:grid; grid-template-columns:minmax(0,1fr) auto; align-items:stretch; gap:10px; }
.input[b-fbzqi9zxy2] { width:100%; min-height:44px; padding:0 13px; box-sizing:border-box; border:1px solid #cfe2e5; border-radius:8px; outline:none; background:linear-gradient(180deg,#fff 0%,#f8fcfb 100%); color:#123456; font-size:.92rem; font-weight:600; box-shadow:0 9px 18px rgba(18,52,86,.045); transition:border-color 150ms ease,box-shadow 150ms ease,background 150ms ease,transform 150ms ease; }
.input:hover[b-fbzqi9zxy2] { border-color:#b7deda; background:#fff; }
.input:focus[b-fbzqi9zxy2] { border-color:#1bb1a7; background:#fff; box-shadow:0 0 0 4px rgba(27,177,167,.14),0 12px 24px rgba(18,52,86,.08); transform:translateY(-1px); }
.date-input[b-fbzqi9zxy2]::-webkit-calendar-picker-indicator { cursor:pointer; }
.toggle-card[b-fbzqi9zxy2] { display:flex; align-items:center; gap:9px; min-height:44px; padding:0 12px; box-sizing:border-box; border:1px solid #cfe2e5; border-radius:8px; background:#f6fbfa; color:#45636c; font-size:.84rem; font-weight:700; cursor:pointer; }
.toggle-card:hover[b-fbzqi9zxy2] { border-color:#9dd4cf; background:#f1fbfa; }
.toggle-card[b-fbzqi9zxy2]  .toggle-switch { position:relative; flex:0 0 auto; width:34px; height:19px; margin:0; border:1px solid #b8cecf; border-radius:999px; appearance:none; -webkit-appearance:none; background:#dce8e8; cursor:pointer; transition:border-color 150ms ease,background 150ms ease,box-shadow 150ms ease; }
.toggle-card[b-fbzqi9zxy2]  .toggle-switch::before { position:absolute; top:2px; left:2px; width:13px; height:13px; border-radius:50%; background:#fff; box-shadow:0 2px 5px rgba(18,52,86,.22); content:""; transition:transform 150ms ease; }
.toggle-card[b-fbzqi9zxy2]  .toggle-switch:checked { border-color:#1b9f96; background:#1bb1a7; }
.toggle-card[b-fbzqi9zxy2]  .toggle-switch:checked::before { transform:translateX(15px); }
.toggle-card[b-fbzqi9zxy2]  .toggle-switch:focus-visible { outline:none; box-shadow:0 0 0 3px rgba(27,177,167,.2); }
.inline-toggle[b-fbzqi9zxy2] { white-space:nowrap; }

.image-field[b-fbzqi9zxy2] { min-width:0; margin-top:20px; padding-top:18px; border-top:1px solid #e0ecec; }
.image-field-header[b-fbzqi9zxy2] { margin-bottom:12px; }
.image-field-title[b-fbzqi9zxy2] { margin-bottom:5px; }
.image-field-header p[b-fbzqi9zxy2] { margin:0; color:#71878e; font-size:.84rem; line-height:1.45; }
.image-actions[b-fbzqi9zxy2] { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; padding:10px; border:1px solid #d6ebe9; border-radius:12px; background:#f6fbfa; }
.image-actions-single[b-fbzqi9zxy2] { grid-template-columns:1fr; }
.image-option[b-fbzqi9zxy2] { position:relative; min-width:0; }
.image-action[b-fbzqi9zxy2] { display:flex; width:100%; min-height:52px; justify-content:center; align-items:center; gap:10px; padding:0 14px; box-sizing:border-box; border:1px solid #cfe2e5; border-radius:8px; background:#fff; color:#45636c; font-size:.88rem; font-weight:800; text-align:center; cursor:pointer; user-select:none; transition:border-color 150ms ease,background 150ms ease,color 150ms ease,box-shadow 150ms ease,transform 150ms ease; }
.image-action:hover[b-fbzqi9zxy2] { border-color:#9dd4cf; background:#f1fbfa; color:#1b7973; box-shadow:0 10px 20px rgba(18,52,86,.07); transform:translateY(-1px); }
.image-action-primary[b-fbzqi9zxy2] { border:0; background:linear-gradient(135deg,#1bb1a7,#38c2b8); color:#fff; box-shadow:0 12px 24px rgba(27,177,167,.2); }
.image-action-primary:hover[b-fbzqi9zxy2] { background:linear-gradient(135deg,#159a92,#2eb1a8); color:#fff; box-shadow:0 16px 28px rgba(27,177,167,.28); }
.image-action-icon[b-fbzqi9zxy2] { position:relative; flex:0 0 32px; width:32px; height:32px; border-radius:8px; background:rgba(27,177,167,.1); }
.image-action-primary .image-action-icon[b-fbzqi9zxy2] { background:rgba(255,255,255,.18); }
.image-action-icon-camera[b-fbzqi9zxy2]::before { position:absolute; top:11px; left:7px; width:18px; height:12px; border:2px solid currentColor; border-radius:4px; content:""; }
.image-action-icon-camera[b-fbzqi9zxy2]::after { position:absolute; top:14px; left:13px; width:6px; height:6px; border:2px solid currentColor; border-radius:50%; content:""; }
.image-action-icon-gallery[b-fbzqi9zxy2]::before { position:absolute; inset:8px 7px 7px; border:2px solid currentColor; border-radius:4px; content:""; }
.image-action-icon-gallery[b-fbzqi9zxy2]::after { position:absolute; right:10px; bottom:10px; left:11px; height:6px; border-bottom:2px solid currentColor; border-left:2px solid currentColor; content:""; transform:skewX(-22deg); }
.image-preview-card[b-fbzqi9zxy2] { display:grid; grid-template-columns:112px minmax(0,1fr); align-items:center; gap:14px; margin-top:12px; padding:12px; border:1px solid #d6ebe9; border-radius:12px; background:#fff; box-shadow:0 9px 18px rgba(18,52,86,.04); }
.image-preview[b-fbzqi9zxy2] { display:block; width:112px; height:82px; object-fit:cover; border:1px solid #d6ebe9; border-radius:8px; background:#f6fbfa; }
.image-selected[b-fbzqi9zxy2] { display:flex; min-width:0; flex-direction:column; gap:4px; }
.image-selected-status[b-fbzqi9zxy2] { color:#1b8f87; font-size:.7rem; font-weight:800; letter-spacing:.05em; text-transform:uppercase; }
.image-selected-name[b-fbzqi9zxy2] { overflow:hidden; color:#123456; font-size:.9rem; font-weight:700; text-overflow:ellipsis; white-space:nowrap; }

.table-wrapper[b-fbzqi9zxy2] { overflow-x:auto; border:1px solid #e0ecec; border-radius:12px; }
.details-table[b-fbzqi9zxy2] { width:100%; min-width:500px; border-collapse:collapse; background:#fff; }
.details-table thead[b-fbzqi9zxy2] { background:#effaf8; }
.details-table th[b-fbzqi9zxy2] { padding:14px 16px; border-bottom:1px solid #cfe5e2; color:#1b7973; font-size:.78rem; font-weight:800; letter-spacing:.03em; text-align:left; text-transform:uppercase; }
.details-table td[b-fbzqi9zxy2] { padding:14px 16px; border-bottom:1px solid #e5eeee; color:#45636c; font-size:.94rem; font-weight:600; }
.details-table tbody tr[b-fbzqi9zxy2] { transition:background-color 150ms ease; }
.details-table tbody tr:hover[b-fbzqi9zxy2] { background:#f6fbfa; }
.details-table tbody tr:last-child td[b-fbzqi9zxy2] { border-bottom:0; }
.status-badge[b-fbzqi9zxy2] { display:inline-flex; min-width:108px; justify-content:center; padding:7px 11px; border-radius:999px; font-size:.8rem; font-weight:800; text-align:center; }
.status-draft[b-fbzqi9zxy2] { border:1px solid #dce8ea; background:#f5f8f8; color:#607b84; }
.status-pending[b-fbzqi9zxy2] { border:1px solid #f0dfa9; background:#fffaf0; color:#8a671c; }
.status-approved[b-fbzqi9zxy2] { border:1px solid #b8dfd4; background:#f0fbf7; color:#247260; }
.status-refused[b-fbzqi9zxy2] { border:1px solid #efc5c5; background:#fff7f7; color:#a43d3d; }
.empty-state[b-fbzqi9zxy2] { padding:24px 18px; border:1px dashed #cfe2e5; border-radius:12px; background:#f8fcfb; color:#71878e; text-align:center; }

@media (max-width:900px) { .leave-page[b-fbzqi9zxy2] { min-height:calc(100vh - 62px); padding:28px 16px; } .leave-card[b-fbzqi9zxy2] { padding:28px 20px 24px; border-radius:20px; } .form-grid[b-fbzqi9zxy2] { grid-template-columns:1fr; } }
@media (max-width:680px) {
    .leave-title-row[b-fbzqi9zxy2] { display:grid; justify-items:center; gap:16px; margin-bottom:22px; }
    .leave-title-row .leave-primary-button[b-fbzqi9zxy2] { position:static; }
    .title[b-fbzqi9zxy2] { font-size:1.65rem; }
    .request-panel[b-fbzqi9zxy2],.history-card[b-fbzqi9zxy2] { padding:14px; border-radius:12px; }
    .panel-header[b-fbzqi9zxy2] { align-items:flex-start; }
    .history-card .table-wrapper[b-fbzqi9zxy2] { overflow-x:hidden; }
    .history-card .details-table[b-fbzqi9zxy2] { min-width:0; table-layout:fixed; }
    .history-card .details-table th[b-fbzqi9zxy2],
    .history-card .details-table td[b-fbzqi9zxy2] { padding:10px 5px; font-size:.72rem; line-height:1.25; overflow-wrap:anywhere; text-align:center; }
    .history-card .details-table th:nth-child(1)[b-fbzqi9zxy2],
    .history-card .details-table td:nth-child(1)[b-fbzqi9zxy2],
    .history-card .details-table th:nth-child(2)[b-fbzqi9zxy2],
    .history-card .details-table td:nth-child(2)[b-fbzqi9zxy2] { width:29%; }
    .history-card .details-table th:nth-child(3)[b-fbzqi9zxy2],
    .history-card .details-table td:nth-child(3)[b-fbzqi9zxy2] { width:42%; }
    .history-card .status-badge[b-fbzqi9zxy2] { width:100%; min-width:0; padding:6px 4px; box-sizing:border-box; font-size:.68rem; line-height:1.15; white-space:normal; }
}
@media (max-width:480px) {
    .date-inline-row[b-fbzqi9zxy2],.image-actions[b-fbzqi9zxy2] { grid-template-columns:1fr; }
    .inline-toggle[b-fbzqi9zxy2] { min-height:42px; white-space:normal; }
    .panel-header[b-fbzqi9zxy2] { flex-direction:column; }
    .image-preview-card[b-fbzqi9zxy2] { grid-template-columns:1fr; }
    .image-preview[b-fbzqi9zxy2] { width:100%; height:160px; }
    .history-card[b-fbzqi9zxy2] { padding:10px; }
    .history-card .details-table th[b-fbzqi9zxy2],
    .history-card .details-table td[b-fbzqi9zxy2] { padding:9px 3px; font-size:.68rem; }
    .history-card .status-badge[b-fbzqi9zxy2] { padding:5px 3px; font-size:.64rem; }
}
@media (prefers-reduced-motion:reduce) { .user-info[b-fbzqi9zxy2],.leave-primary-button[b-fbzqi9zxy2],.input[b-fbzqi9zxy2],[b-fbzqi9zxy2] .toggle-switch,[b-fbzqi9zxy2] .toggle-switch::before,.image-action[b-fbzqi9zxy2],.details-table tbody tr[b-fbzqi9zxy2] { transition:none; } }
/* /Components/Pages/Conge.razor.rz.scp.css */
.leave-page[b-6jfde8rar3] {
    position: relative;
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 24px;
    overflow: hidden;
    box-sizing: border-box;
    background:
        radial-gradient(circle at 18% 18%, rgba(27, 177, 167, .22), transparent 24rem),
        radial-gradient(circle at 82% 78%, rgba(18, 52, 86, .10), transparent 24rem),
        linear-gradient(180deg, #f8fcfc 0%, #edf7f6 100%);
    color: #123456;
    font-family: "DM Sans", "Segoe UI", sans-serif;
}

.leave-page[b-6jfde8rar3]::before,
.leave-page[b-6jfde8rar3]::after { position: absolute; border-radius: 50%; content: ""; pointer-events: none; }
.leave-page[b-6jfde8rar3]::before { top: -170px; right: -130px; width: 420px; height: 420px; background: rgba(27, 177, 167, .14); }
.leave-page[b-6jfde8rar3]::after { bottom: -190px; left: -150px; width: 460px; height: 460px; background: rgba(18, 52, 86, .07); }

.leave-card[b-6jfde8rar3] {
    position: relative;
    z-index: 1;
    width: min(100%, 1100px);
    padding: 34px 30px 30px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(190, 224, 221, .95);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(250, 254, 253, .93));
    box-shadow: 0 26px 70px rgba(18, 52, 86, .14), 0 1px 0 rgba(255, 255, 255, .9) inset;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.leave-card[b-6jfde8rar3]::before { position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, #1bb1a7, #7fd5c8); content: ""; }
.leave-top[b-6jfde8rar3] { margin-bottom: 22px; }
.leave-title-row[b-6jfde8rar3] { position: relative; display: flex; justify-content: center; align-items: center; min-height: 44px; margin: 2px 0 28px; }
.title[b-6jfde8rar3] { margin: 0; color: #123456; font-size: 1.9rem; font-weight: 850; letter-spacing: -.03em; line-height: 1.1; text-align: center; }

.user-info[b-6jfde8rar3],
.request-panel[b-6jfde8rar3],
.history-card[b-6jfde8rar3] {
    border: 1px solid #d6ebe9;
    background: linear-gradient(180deg, #fff, #f8fcfb);
    box-shadow: 0 9px 18px rgba(18, 52, 86, .04);
}

.user-info[b-6jfde8rar3] { padding: 14px 16px; border-radius: 12px; transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease; }
.user-info:hover[b-6jfde8rar3] { border-color: #b7deda; box-shadow: 0 12px 24px rgba(18, 52, 86, .07); transform: translateY(-1px); }
.info-label[b-6jfde8rar3] { display: block; margin-bottom: 5px; color: #1b8f87; font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.info-value[b-6jfde8rar3] { color: #123456; font-size: .98rem; font-weight: 700; overflow-wrap: anywhere; }

.leave-primary-button[b-6jfde8rar3] {
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #1bb1a7, #38c2b8);
    color: #fff;
    font-size: .9rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(27, 177, 167, .24);
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.leave-title-row .leave-primary-button[b-6jfde8rar3] { position: absolute; right: 0; top: 0; }
.leave-primary-button:hover:not(:disabled)[b-6jfde8rar3] { background: linear-gradient(135deg, #159a92, #2eb1a8); box-shadow: 0 18px 36px rgba(27, 177, 167, .32); transform: translateY(-1px); }
.leave-primary-button:focus-visible[b-6jfde8rar3] { outline: 3px solid rgba(27, 177, 167, .22); outline-offset: 2px; }
.leave-primary-button:disabled[b-6jfde8rar3] { cursor: wait; opacity: .72; transform: none; }
.submit-button[b-6jfde8rar3] { display: grid; width: 100%; place-items: center; margin-top: 20px; }

.error[b-6jfde8rar3],
.success[b-6jfde8rar3] { margin: 0 0 18px; padding: 11px 12px; border-radius: 8px; font-size: .86rem; font-weight: 700; }
.error[b-6jfde8rar3] { border: 1px solid #efc5c5; background: #fff7f7; color: #a43d3d; }
.success[b-6jfde8rar3] { border: 1px solid #b8dfd4; background: #f0fbf7; color: #247260; }

.request-panel[b-6jfde8rar3],
.history-card[b-6jfde8rar3] { padding: 18px; border-radius: 16px; }
.request-panel[b-6jfde8rar3] { margin-bottom: 20px; }
.panel-header[b-6jfde8rar3] { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; }
.panel-header h2[b-6jfde8rar3] { margin: 0; color: #123456; font-size: 1.15rem; font-weight: 800; }
.panel-badge[b-6jfde8rar3] { padding: 7px 11px; border: 1px solid #bde4df; border-radius: 999px; background: #effaf8; color: #1b7973; font-size: .8rem; font-weight: 800; white-space: nowrap; }

.form-grid[b-6jfde8rar3] { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.date-field-card[b-6jfde8rar3] { min-width: 0; }
.date-field-card > label[b-6jfde8rar3] { display: block; margin-bottom: 9px; color: #607b84; font-size: .72rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.date-inline-row[b-6jfde8rar3] { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: stretch; gap: 10px; }
.input[b-6jfde8rar3] {
    width: 100%;
    min-height: 44px;
    padding: 0 13px;
    box-sizing: border-box;
    border: 1px solid #cfe2e5;
    border-radius: 8px;
    outline: none;
    background: linear-gradient(180deg, #fff 0%, #f8fcfb 100%);
    color: #123456;
    font-size: .92rem;
    font-weight: 600;
    box-shadow: 0 9px 18px rgba(18, 52, 86, .045);
    transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease, transform 150ms ease;
}
.input:hover[b-6jfde8rar3] { border-color: #b7deda; background: #fff; }
.input:focus[b-6jfde8rar3] { border-color: #1bb1a7; background: #fff; box-shadow: 0 0 0 4px rgba(27, 177, 167, .14), 0 12px 24px rgba(18, 52, 86, .08); transform: translateY(-1px); }
.date-input[b-6jfde8rar3]::-webkit-calendar-picker-indicator { cursor: pointer; }

.toggle-card[b-6jfde8rar3] { display: flex; align-items: center; gap: 9px; min-height: 44px; padding: 0 12px; box-sizing: border-box; border: 1px solid #cfe2e5; border-radius: 8px; background: #f6fbfa; color: #45636c; font-size: .84rem; font-weight: 700; cursor: pointer; }
.toggle-card:hover[b-6jfde8rar3] { border-color: #9dd4cf; background: #f1fbfa; }
.toggle-card[b-6jfde8rar3]  .toggle-switch {
    position: relative;
    flex: 0 0 auto;
    width: 34px;
    height: 19px;
    margin: 0;
    border: 1px solid #b8cecf;
    border-radius: 999px;
    appearance: none;
    -webkit-appearance: none;
    background: #dce8e8;
    cursor: pointer;
    transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}
.toggle-card[b-6jfde8rar3]  .toggle-switch::before {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(18, 52, 86, .22);
    content: "";
    transition: transform 150ms ease;
}
.toggle-card[b-6jfde8rar3]  .toggle-switch:checked { border-color: #1b9f96; background: #1bb1a7; }
.toggle-card[b-6jfde8rar3]  .toggle-switch:checked::before { transform: translateX(15px); }
.toggle-card[b-6jfde8rar3]  .toggle-switch:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(27, 177, 167, .2); }
.inline-toggle[b-6jfde8rar3] { white-space: nowrap; }

.table-wrapper[b-6jfde8rar3] { overflow-x: auto; border: 1px solid #e0ecec; border-radius: 12px; }
.details-table[b-6jfde8rar3] { width: 100%; min-width: 500px; border-collapse: collapse; background: #fff; }
.details-table thead[b-6jfde8rar3] { background: #effaf8; }
.details-table th[b-6jfde8rar3] { padding: 14px 16px; border-bottom: 1px solid #cfe5e2; color: #1b7973; font-size: .78rem; font-weight: 800; letter-spacing: .03em; text-align: left; text-transform: uppercase; }
.details-table td[b-6jfde8rar3] { padding: 14px 16px; border-bottom: 1px solid #e5eeee; color: #45636c; font-size: .94rem; font-weight: 600; }
.details-table tbody tr[b-6jfde8rar3] { transition: background-color 150ms ease; }
.details-table tbody tr:hover[b-6jfde8rar3] { background: #f6fbfa; }
.details-table tbody tr:last-child td[b-6jfde8rar3] { border-bottom: 0; }

.status-badge[b-6jfde8rar3] { display: inline-flex; min-width: 108px; justify-content: center; padding: 7px 11px; border-radius: 999px; font-size: .8rem; font-weight: 800; text-align: center; }
.status-draft[b-6jfde8rar3] { border: 1px solid #dce8ea; background: #f5f8f8; color: #607b84; }
.status-pending[b-6jfde8rar3] { border: 1px solid #f0dfa9; background: #fffaf0; color: #8a671c; }
.status-approved[b-6jfde8rar3] { border: 1px solid #b8dfd4; background: #f0fbf7; color: #247260; }
.status-refused[b-6jfde8rar3] { border: 1px solid #efc5c5; background: #fff7f7; color: #a43d3d; }
.empty-state[b-6jfde8rar3] { padding: 24px 18px; border: 1px dashed #cfe2e5; border-radius: 12px; background: #f8fcfb; color: #71878e; text-align: center; }

@media (max-width: 900px) {
    .leave-page[b-6jfde8rar3] { min-height: calc(100vh - 62px); padding: 28px 16px; }
    .leave-card[b-6jfde8rar3] { padding: 28px 20px 24px; border-radius: 20px; }
    .form-grid[b-6jfde8rar3] { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .leave-title-row[b-6jfde8rar3] { display: grid; justify-items: center; gap: 16px; margin-bottom: 22px; }
    .leave-title-row .leave-primary-button[b-6jfde8rar3] { position: static; }
    .title[b-6jfde8rar3] { font-size: 1.65rem; }
    .request-panel[b-6jfde8rar3], .history-card[b-6jfde8rar3] { padding: 14px; border-radius: 12px; }
    .panel-header[b-6jfde8rar3] { align-items: flex-start; }

    .history-card .table-wrapper[b-6jfde8rar3] { overflow-x: hidden; }
    .history-card .details-table[b-6jfde8rar3] { min-width: 0; table-layout: fixed; }
    .history-card .details-table th[b-6jfde8rar3],
    .history-card .details-table td[b-6jfde8rar3] {
        padding: 10px 5px;
        font-size: .72rem;
        line-height: 1.25;
        overflow-wrap: anywhere;
        text-align: center;
    }
    .history-card .details-table th:nth-child(1)[b-6jfde8rar3],
    .history-card .details-table td:nth-child(1)[b-6jfde8rar3],
    .history-card .details-table th:nth-child(2)[b-6jfde8rar3],
    .history-card .details-table td:nth-child(2)[b-6jfde8rar3] { width: 29%; }
    .history-card .details-table th:nth-child(3)[b-6jfde8rar3],
    .history-card .details-table td:nth-child(3)[b-6jfde8rar3] { width: 42%; }
    .history-card .status-badge[b-6jfde8rar3] {
        width: 100%;
        min-width: 0;
        padding: 6px 4px;
        box-sizing: border-box;
        font-size: .68rem;
        line-height: 1.15;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .date-inline-row[b-6jfde8rar3] { grid-template-columns: 1fr; }
    .inline-toggle[b-6jfde8rar3] { min-height: 42px; white-space: normal; }
    .panel-header[b-6jfde8rar3] { flex-direction: column; }
    .history-card[b-6jfde8rar3] { padding: 10px; }
    .history-card .details-table th[b-6jfde8rar3],
    .history-card .details-table td[b-6jfde8rar3] { padding: 9px 3px; font-size: .68rem; }
    .history-card .status-badge[b-6jfde8rar3] { padding: 5px 3px; font-size: .64rem; }
}

@media (prefers-reduced-motion: reduce) {
    .user-info[b-6jfde8rar3], .leave-primary-button[b-6jfde8rar3], .input[b-6jfde8rar3], [b-6jfde8rar3] .toggle-switch, [b-6jfde8rar3] .toggle-switch::before, .details-table tbody tr[b-6jfde8rar3] { transition: none; }
}
/* /Components/Pages/HeuresTravaillees.razor.rz.scp.css */
.worktime-page[b-mye8gn6f4v] {
    position: relative;
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 24px;
    overflow: hidden;
    box-sizing: border-box;
    background:
        radial-gradient(circle at 18% 18%, rgba(27, 177, 167, .22), transparent 24rem),
        radial-gradient(circle at 82% 78%, rgba(18, 52, 86, .10), transparent 24rem),
        linear-gradient(180deg, #f8fcfc 0%, #edf7f6 100%);
    color: #123456;
    font-family: "DM Sans", "Segoe UI", sans-serif;
}

.worktime-page[b-mye8gn6f4v]::before,
.worktime-page[b-mye8gn6f4v]::after { position: absolute; border-radius: 50%; content: ""; pointer-events: none; }
.worktime-page[b-mye8gn6f4v]::before { top: -170px; right: -130px; width: 420px; height: 420px; background: rgba(27, 177, 167, .14); }
.worktime-page[b-mye8gn6f4v]::after { bottom: -190px; left: -150px; width: 460px; height: 460px; background: rgba(18, 52, 86, .07); }

.worktime-card[b-mye8gn6f4v] {
    position: relative;
    z-index: 1;
    width: min(100%, 1100px);
    padding: 34px 30px 30px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(190, 224, 221, .95);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(250, 254, 253, .93));
    box-shadow: 0 26px 70px rgba(18, 52, 86, .14), 0 1px 0 rgba(255, 255, 255, .9) inset;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.worktime-card[b-mye8gn6f4v]::before { position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, #1bb1a7, #7fd5c8); content: ""; }
.worktime-top[b-mye8gn6f4v] { margin-bottom: 22px; }
.title[b-mye8gn6f4v] { margin: 2px 0 28px; color: #123456; font-size: 1.9rem; font-weight: 850; letter-spacing: -.03em; line-height: 1.1; text-align: center; }

.user-info[b-mye8gn6f4v],
.period-item[b-mye8gn6f4v] {
    padding: 14px 16px;
    border: 1px solid #d6ebe9;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #f6fbfa);
    box-shadow: 0 9px 18px rgba(18, 52, 86, .04);
    transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.user-info:hover[b-mye8gn6f4v],
.period-item:hover[b-mye8gn6f4v] { border-color: #b7deda; box-shadow: 0 12px 24px rgba(18, 52, 86, .07); transform: translateY(-1px); }
.info-label[b-mye8gn6f4v] { display: block; margin-bottom: 5px; color: #1b8f87; font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.info-value[b-mye8gn6f4v] { color: #123456; font-size: .98rem; font-weight: 700; overflow-wrap: anywhere; }

.toolbar-card[b-mye8gn6f4v] {
    margin-bottom: 18px;
    padding: 18px;
    border: 1px solid #d6ebe9;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff, #f6fbfa);
    box-shadow: 0 9px 18px rgba(18, 52, 86, .04);
}

.form-group[b-mye8gn6f4v] { margin-bottom: 16px; }
.form-group label[b-mye8gn6f4v] { display: block; margin-bottom: 9px; color: #607b84; font-size: .72rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.input[b-mye8gn6f4v] {
    width: 100%;
    min-height: 44px;
    padding: 0 42px 0 13px;
    box-sizing: border-box;
    border: 1px solid #cfe2e5;
    border-radius: 8px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23607b84' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"), linear-gradient(180deg, #fff 0%, #f8fcfb 100%);
    background-repeat: no-repeat;
    background-position: right 15px center, 0 0;
    color: #123456;
    font-size: .92rem;
    font-weight: 600;
    box-shadow: 0 9px 18px rgba(18, 52, 86, .045);
    transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease, transform 150ms ease;
}
.input:hover[b-mye8gn6f4v] { border-color: #b7deda; background-color: #fff; }
.input:focus[b-mye8gn6f4v] { border-color: #1bb1a7; background-color: #fff; box-shadow: 0 0 0 4px rgba(27, 177, 167, .14), 0 12px 24px rgba(18, 52, 86, .08); transform: translateY(-1px); }
.input option[b-mye8gn6f4v] { background: #fff; color: #123456; }

.navigation-row[b-mye8gn6f4v] { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.nav-button[b-mye8gn6f4v],
.worktime-button[b-mye8gn6f4v] { min-height: 44px; padding: 0 18px; border-radius: 8px; cursor: pointer; font-size: .9rem; font-weight: 800; transition: border-color 150ms ease, color 150ms ease, transform 150ms ease, box-shadow 150ms ease, background 150ms ease; }
.nav-button[b-mye8gn6f4v] { border: 1px solid #cfe2e5; }
.nav-button.secondary[b-mye8gn6f4v] { background: #fff; color: #45636c; }
.nav-button.secondary:hover:not(:disabled)[b-mye8gn6f4v] { border-color: #9dd4cf; background: #f1fbfa; color: #1b7973; transform: translateY(-1px); }
.nav-button.current[b-mye8gn6f4v],
.worktime-button[b-mye8gn6f4v] { border: 0; background: linear-gradient(135deg, #1bb1a7, #38c2b8); color: #fff; box-shadow: 0 14px 28px rgba(27, 177, 167, .24); }
.nav-button.current:hover:not(:disabled)[b-mye8gn6f4v],
.worktime-button:hover:not(:disabled)[b-mye8gn6f4v] { outline: none; background: linear-gradient(135deg, #159a92, #2eb1a8); box-shadow: 0 18px 36px rgba(27, 177, 167, .32); transform: translateY(-1px); }
.nav-button:focus-visible[b-mye8gn6f4v],
.worktime-button:focus-visible[b-mye8gn6f4v] { outline: 3px solid rgba(27, 177, 167, .22); outline-offset: 2px; }
.nav-button:disabled[b-mye8gn6f4v],
.worktime-button:disabled[b-mye8gn6f4v] { cursor: wait; opacity: .72; transform: none; }
.worktime-button[b-mye8gn6f4v] { display: grid; width: 100%; place-items: center; margin-top: 2px; }
.period-box[b-mye8gn6f4v] { margin-bottom: 20px; }
.error[b-mye8gn6f4v] { margin: 0 0 18px; padding: 11px 12px; border: 1px solid #efc5c5; border-radius: 8px; background: #fff7f7; color: #a43d3d; font-size: .86rem; font-weight: 700; }

.summary-grid[b-mye8gn6f4v] { display: grid; grid-template-columns: repeat(3, minmax(200px, 1fr)); gap: 16px; margin-bottom: 22px; }
.summary-box[b-mye8gn6f4v] {
    position: relative;
    padding: 18px;
    overflow: hidden;
    border: 1px solid #d6ebe9;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff, #f8fcfb);
    box-shadow: 0 9px 18px rgba(18, 52, 86, .04);
    transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}
.summary-box[b-mye8gn6f4v]::before { position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(180deg, #1bb1a7, #7fd5c8); content: ""; }
.summary-box:hover[b-mye8gn6f4v] { border-color: #b7deda; box-shadow: 0 14px 28px rgba(18, 52, 86, .08); transform: translateY(-2px); }
.summary-label[b-mye8gn6f4v] { display: block; margin-bottom: 8px; color: #1b8f87; font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.summary-box strong[b-mye8gn6f4v] { color: #123456; font-size: 1.35rem; font-weight: 850; }

.details-card[b-mye8gn6f4v] { padding: 18px; border: 1px solid #d6ebe9; border-radius: 16px; background: linear-gradient(180deg, #fff, #f8fcfb); box-shadow: 0 9px 18px rgba(18, 52, 86, .04); }
.details-header h2[b-mye8gn6f4v] { margin: 0 0 16px; color: #123456; font-size: 1.15rem; font-weight: 800; }
.table-wrapper[b-mye8gn6f4v] { overflow-x: auto; border: 1px solid #e0ecec; border-radius: 12px; }
.details-table[b-mye8gn6f4v] { width: 100%; min-width: 420px; border-collapse: collapse; overflow: hidden; background: #fff; }
.details-table thead[b-mye8gn6f4v] { background: #effaf8; }
.details-table th[b-mye8gn6f4v] { padding: 14px 16px; border-bottom: 1px solid #cfe5e2; color: #1b7973; font-size: .78rem; font-weight: 800; letter-spacing: .03em; text-align: left; text-transform: uppercase; }
.details-table td[b-mye8gn6f4v] { padding: 14px 16px; border-bottom: 1px solid #e5eeee; color: #45636c; font-size: .94rem; font-weight: 600; }
.details-table tbody tr[b-mye8gn6f4v] { transition: background-color 150ms ease; }
.details-table tbody tr:hover[b-mye8gn6f4v] { background: #f6fbfa; }
.details-table tbody tr:last-child td[b-mye8gn6f4v] { border-bottom: 0; }

@media (max-width: 900px) {
    .worktime-page[b-mye8gn6f4v] { min-height: calc(100vh - 62px); padding: 28px 16px; }
    .worktime-card[b-mye8gn6f4v] { padding: 28px 20px 24px; border-radius: 20px; }
    .summary-grid[b-mye8gn6f4v] { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .worktime-page[b-mye8gn6f4v] { padding: 28px 16px; }
    .title[b-mye8gn6f4v] { margin-bottom: 22px; font-size: 1.65rem; }
    .toolbar-card[b-mye8gn6f4v] { padding: 14px; border-radius: 12px; }
    .navigation-row[b-mye8gn6f4v] { gap: 8px; }
    .nav-button[b-mye8gn6f4v] { min-width: 0; padding: 0 6px; font-size: .8rem; }
    .period-item[b-mye8gn6f4v] { padding: 12px 14px; }
    .info-value[b-mye8gn6f4v] { font-size: .88rem; }
    .summary-box[b-mye8gn6f4v] { padding: 16px; border-radius: 12px; }
    .summary-box strong[b-mye8gn6f4v] { font-size: 1.15rem; }
    .details-card[b-mye8gn6f4v] { padding: 14px; border-radius: 12px; }
    .details-header h2[b-mye8gn6f4v] { font-size: 1.02rem; }
    .details-table[b-mye8gn6f4v] { min-width: 340px; }
    .details-table th[b-mye8gn6f4v],
    .details-table td[b-mye8gn6f4v] { padding: 12px; font-size: .84rem; }
}

@media (max-width: 400px) {
    .nav-button[b-mye8gn6f4v] { padding: 0 4px; font-size: .73rem; }
    .summary-box strong[b-mye8gn6f4v] { font-size: 1.05rem; }
    .details-table th[b-mye8gn6f4v],
    .details-table td[b-mye8gn6f4v] { font-size: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
    .user-info[b-mye8gn6f4v], .period-item[b-mye8gn6f4v], .input[b-mye8gn6f4v], .nav-button[b-mye8gn6f4v], .worktime-button[b-mye8gn6f4v], .summary-box[b-mye8gn6f4v], .details-table tbody tr[b-mye8gn6f4v] { transition: none; }
}
/* /Components/Pages/Login.razor.rz.scp.css */
.login-page[b-kem3prfiep] {
    position: relative; display: grid; min-height: 100vh; place-items: center; padding: 24px; overflow: hidden;
    background: radial-gradient(circle at 18% 18%, rgba(27,177,167,.22), transparent 24rem), radial-gradient(circle at 82% 78%, rgba(18,52,86,.10), transparent 24rem), linear-gradient(180deg,#f8fcfc 0%,#edf7f6 100%);
    color: #123456; font-family: "DM Sans", "Segoe UI", sans-serif;
}
.login-page[b-kem3prfiep]::before,.login-page[b-kem3prfiep]::after { position:absolute; border-radius:50%; content:""; pointer-events:none; }
.login-page[b-kem3prfiep]::before { top:-170px; right:-130px; width:420px; height:420px; background:rgba(27,177,167,.14); }
.login-page[b-kem3prfiep]::after { bottom:-190px; left:-150px; width:460px; height:460px; background:rgba(18,52,86,.07); }
.login-card[b-kem3prfiep] { position:relative; z-index:1; width:min(100%,350px); padding:28px 26px 26px; overflow:hidden; border:1px solid rgba(190,224,221,.95); border-radius:24px; background:linear-gradient(180deg,rgba(255,255,255,.97),rgba(250,254,253,.93)); box-shadow:0 26px 70px rgba(18,52,86,.14),0 1px 0 rgba(255,255,255,.9) inset; backdrop-filter:blur(16px); }
.login-card[b-kem3prfiep]::before { position:absolute; inset:0 0 auto; height:4px; background:linear-gradient(90deg,#1bb1a7,#7fd5c8); content:""; }
.login-card-header[b-kem3prfiep] { display:grid; justify-items:center; gap:12px; margin-bottom:30px; text-align:center; }
.brand-icon[b-kem3prfiep] { width:72px; height:72px; padding:8px; border:1px solid #d6ebe9; border-radius:9px; background:#fff; box-shadow:0 15px 34px rgba(18,52,86,.14); object-fit:contain; }
.brand-name-logo[b-kem3prfiep] { display:block; width:min(100%,115px); height:auto; margin:2px 0 0; object-fit:contain; }
.subtitle[b-kem3prfiep] { margin:0; color:#71878e; font-size:.9rem; }
.form-group[b-kem3prfiep] { margin-bottom:18px; }
.form-group label[b-kem3prfiep] { display:block; margin-bottom:9px; color:#607b84; font-size:.72rem; font-weight:800; letter-spacing:.03em; text-transform:uppercase; }
.input[b-kem3prfiep] { width:100%; min-height:44px; padding:0 13px; box-sizing:border-box; border:1px solid #cfe2e5; border-radius:8px; outline:none; background:linear-gradient(180deg,#fff 0%,#f8fcfb 100%); color:#123456; font-size:.92rem; font-weight:600; box-shadow:0 9px 18px rgba(18,52,86,.045); transition:border-color 150ms ease,box-shadow 150ms ease,background 150ms ease,transform 150ms ease; }
.input[b-kem3prfiep]::placeholder { color:#aab8bc; font-weight:400; }
.input:hover[b-kem3prfiep] { border-color:#b7deda; background:#fff; }
.input:focus[b-kem3prfiep] { border-color:#1bb1a7; background:#fff; box-shadow:0 0 0 4px rgba(27,177,167,.14),0 12px 24px rgba(18,52,86,.08); transform:translateY(-1px); }
.form-group:focus-within label[b-kem3prfiep] { color:#1b8f87; }
.password-field[b-kem3prfiep] { position:relative; }
.password-input[b-kem3prfiep] { padding-right:48px; }
.password-input[b-kem3prfiep]::-ms-reveal,.password-input[b-kem3prfiep]::-ms-clear { display:none; }
.password-toggle[b-kem3prfiep] { position:absolute; top:50%; right:7px; display:grid; width:32px; height:32px; place-items:center; padding:0; border:1px solid transparent; border-radius:8px; background:transparent; color:#607b84; cursor:pointer; transform:translateY(-50%); transition:background-color 150ms ease,border-color 150ms ease,color 150ms ease; }
.password-toggle:hover[b-kem3prfiep],.password-toggle:focus-visible[b-kem3prfiep] { border-color:#cfe2e5; outline:none; background:#f1fbfa; color:#1b8f87; }
.password-toggle svg[b-kem3prfiep] { width:18px; height:18px; fill:none; stroke:currentColor; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; }
.error[b-kem3prfiep] { margin:0 0 16px; padding:11px 12px; border:1px solid #efc5c5; border-radius:8px; background:#fff7f7; color:#a43d3d; font-size:.86rem; font-weight:700; }
.login-button[b-kem3prfiep] { display:grid; width:min(100%,150px); min-height:44px; place-items:center; margin:10px auto 0; padding:0 18px; border:0; border-radius:8px; background:linear-gradient(135deg,#1bb1a7,#38c2b8); color:#fff; font-size:.9rem; font-weight:800; cursor:pointer; box-shadow:0 14px 28px rgba(27,177,167,.24); transition:transform 150ms ease,box-shadow 150ms ease,background 150ms ease; }
.login-button:hover:not(:disabled)[b-kem3prfiep],.login-button:focus-visible:not(:disabled)[b-kem3prfiep] { outline:none; background:linear-gradient(135deg,#159a92,#2eb1a8); box-shadow:0 18px 36px rgba(27,177,167,.32); transform:translateY(-1px); }
.login-button:disabled[b-kem3prfiep] { cursor:wait; opacity:.72; }
@media (max-width:520px) { .login-page[b-kem3prfiep] { padding:16px; } .login-card[b-kem3prfiep] { padding:26px 20px 24px; } }
@media (prefers-reduced-motion:reduce) { .input[b-kem3prfiep],.password-toggle[b-kem3prfiep],.login-button[b-kem3prfiep] { transition:none; } }
/* /Components/Pages/Planning.razor.rz.scp.css */
.planning-page[b-njdig8fgrt] {
    position: relative;
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 24px;
    overflow: hidden;
    box-sizing: border-box;
    background:
        radial-gradient(circle at 18% 18%, rgba(27, 177, 167, .22), transparent 24rem),
        radial-gradient(circle at 82% 78%, rgba(18, 52, 86, .10), transparent 24rem),
        linear-gradient(180deg, #f8fcfc 0%, #edf7f6 100%);
    color: #123456;
    font-family: "DM Sans", "Segoe UI", sans-serif;
}

.planning-page[b-njdig8fgrt]::before,
.planning-page[b-njdig8fgrt]::after {
    position: absolute;
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.planning-page[b-njdig8fgrt]::before {
    top: -170px;
    right: -130px;
    width: 420px;
    height: 420px;
    background: rgba(27, 177, 167, .14);
}

.planning-page[b-njdig8fgrt]::after {
    bottom: -190px;
    left: -150px;
    width: 460px;
    height: 460px;
    background: rgba(18, 52, 86, .07);
}

.planning-card[b-njdig8fgrt] {
    position: relative;
    z-index: 1;
    width: min(100%, 1100px);
    padding: 34px 30px 30px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(190, 224, 221, .95);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(250, 254, 253, .93));
    box-shadow: 0 26px 70px rgba(18, 52, 86, .14), 0 1px 0 rgba(255, 255, 255, .9) inset;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.planning-card[b-njdig8fgrt]::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #1bb1a7, #7fd5c8);
    content: "";
}

.planning-top[b-njdig8fgrt] { margin-bottom: 22px; }

.title[b-njdig8fgrt] {
    margin: 2px 0 28px;
    color: #123456;
    font-size: 1.9rem;
    font-weight: 850;
    letter-spacing: -.03em;
    line-height: 1.1;
    text-align: center;
}

.user-info[b-njdig8fgrt],
.period-item[b-njdig8fgrt] {
    padding: 14px 16px;
    border: 1px solid #d6ebe9;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #f6fbfa);
    box-shadow: 0 9px 18px rgba(18, 52, 86, .04);
    transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.user-info:hover[b-njdig8fgrt],
.period-item:hover[b-njdig8fgrt] {
    border-color: #b7deda;
    box-shadow: 0 12px 24px rgba(18, 52, 86, .07);
    transform: translateY(-1px);
}

.info-label[b-njdig8fgrt] {
    display: block;
    margin-bottom: 5px;
    color: #1b8f87;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.info-value[b-njdig8fgrt] {
    color: #123456;
    font-size: .98rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.toolbar-card[b-njdig8fgrt] {
    margin-bottom: 18px;
    padding: 18px;
    border: 1px solid #d6ebe9;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff, #f6fbfa);
    box-shadow: 0 9px 18px rgba(18, 52, 86, .04);
}

.form-group[b-njdig8fgrt] { margin-bottom: 16px; }

.form-group label[b-njdig8fgrt] {
    display: block;
    margin-bottom: 9px;
    color: #607b84;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.input[b-njdig8fgrt] {
    width: 100%;
    min-height: 44px;
    padding: 0 42px 0 13px;
    box-sizing: border-box;
    border: 1px solid #cfe2e5;
    border-radius: 8px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23607b84' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"), linear-gradient(180deg, #fff 0%, #f8fcfb 100%);
    background-repeat: no-repeat;
    background-position: right 15px center, 0 0;
    color: #123456;
    font-size: .92rem;
    font-weight: 600;
    box-shadow: 0 9px 18px rgba(18, 52, 86, .045);
    transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.input:hover[b-njdig8fgrt] { border-color: #b7deda; background-color: #fff; }
.input:focus[b-njdig8fgrt] { border-color: #1bb1a7; background-color: #fff; box-shadow: 0 0 0 4px rgba(27, 177, 167, .14), 0 12px 24px rgba(18, 52, 86, .08); transform: translateY(-1px); }
.input option[b-njdig8fgrt] { background: #fff; color: #123456; }

.navigation-row[b-njdig8fgrt] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.nav-button[b-njdig8fgrt],
.planning-button[b-njdig8fgrt] {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 800;
    transition: border-color 150ms ease, color 150ms ease, transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.nav-button[b-njdig8fgrt] { border: 1px solid #cfe2e5; }
.nav-button.secondary[b-njdig8fgrt] { background: #fff; color: #45636c; }
.nav-button.secondary:hover:not(:disabled)[b-njdig8fgrt] { border-color: #9dd4cf; background: #f1fbfa; color: #1b7973; transform: translateY(-1px); }
.nav-button.current[b-njdig8fgrt],
.planning-button[b-njdig8fgrt] { border: 0; background: linear-gradient(135deg, #1bb1a7, #38c2b8); color: #fff; box-shadow: 0 14px 28px rgba(27, 177, 167, .24); }
.nav-button.current:hover:not(:disabled)[b-njdig8fgrt],
.planning-button:hover:not(:disabled)[b-njdig8fgrt] { outline: none; background: linear-gradient(135deg, #159a92, #2eb1a8); box-shadow: 0 18px 36px rgba(27, 177, 167, .32); transform: translateY(-1px); }
.nav-button:focus-visible[b-njdig8fgrt],
.planning-button:focus-visible[b-njdig8fgrt] { outline: 3px solid rgba(27, 177, 167, .22); outline-offset: 2px; }
.nav-button:disabled[b-njdig8fgrt],
.planning-button:disabled[b-njdig8fgrt] { cursor: wait; opacity: .72; transform: none; }

.planning-button[b-njdig8fgrt] { display: grid; width: 100%; place-items: center; margin-top: 2px; }
.period-box[b-njdig8fgrt] { margin-bottom: 20px; }

.error[b-njdig8fgrt] {
    margin: 0 0 18px;
    padding: 11px 12px;
    border: 1px solid #efc5c5;
    border-radius: 8px;
    background: #fff7f7;
    color: #a43d3d;
    font-size: .86rem;
    font-weight: 700;
}

.planning-days[b-njdig8fgrt] { display: grid; grid-template-columns: repeat(2, minmax(280px, 1fr)); gap: 16px; }

.day-card[b-njdig8fgrt] {
    padding: 18px;
    border: 1px solid #d6ebe9;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff, #f8fcfb);
    box-shadow: 0 9px 18px rgba(18, 52, 86, .04);
    transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.day-card:hover[b-njdig8fgrt] { border-color: #b7deda; box-shadow: 0 14px 28px rgba(18, 52, 86, .08); transform: translateY(-2px); }
.day-card-header[b-njdig8fgrt] { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.day-info[b-njdig8fgrt] { min-width: 0; }
.day-name[b-njdig8fgrt] { color: #123456; font-size: 1.02rem; font-weight: 800; }
.day-date[b-njdig8fgrt] { margin-top: 4px; color: #607b84; font-size: .9rem; }

.schedule-badge[b-njdig8fgrt] {
    max-width: 180px;
    padding: 7px 11px;
    overflow: hidden;
    border: 1px solid #bde4df;
    border-radius: 999px;
    background: #effaf8;
    color: #1b7973;
    font-size: .8rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.schedule-badge.empty[b-njdig8fgrt] { border-color: #dce8ea; background: #f5f8f8; color: #71878e; }
.slots-list[b-njdig8fgrt] { display: flex; flex-direction: column; gap: 10px; }
.slot-item[b-njdig8fgrt] { padding: 13px 14px; border: 1px solid #e0ecec; border-radius: 10px; background: #f6fbfa; }
.slot-time[b-njdig8fgrt] { margin-bottom: 5px; color: #123456; font-size: .97rem; font-weight: 800; }
.separator[b-njdig8fgrt] { margin: 0 6px; color: #1bb1a7; }
.slot-break[b-njdig8fgrt] { color: #607b84; font-size: .9rem; }
.empty-day-message[b-njdig8fgrt] { padding-top: 6px; color: #71878e; font-style: italic; line-height: 1.5; }

.note-box[b-njdig8fgrt] { margin-top: 12px; padding: 12px 14px; border: 1px solid #f0dfa9; border-radius: 10px; background: #fffaf0; }
.note-label[b-njdig8fgrt] { margin-bottom: 5px; color: #9a721c; font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.note-text[b-njdig8fgrt] { color: #5f542f; font-size: .92rem; line-height: 1.45; overflow-wrap: anywhere; }

@media (max-width: 900px) {
    .planning-page[b-njdig8fgrt] { min-height: calc(100vh - 62px); padding: 28px 16px; }
    .planning-card[b-njdig8fgrt] { padding: 28px 20px 24px; border-radius: 20px; }
    .planning-days[b-njdig8fgrt] { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .planning-page[b-njdig8fgrt] { padding: 28px 16px; }
    .title[b-njdig8fgrt] { margin-bottom: 22px; font-size: 1.65rem; }
    .toolbar-card[b-njdig8fgrt] { padding: 14px; border-radius: 12px; }
    .navigation-row[b-njdig8fgrt] { gap: 8px; }
    .nav-button[b-njdig8fgrt] { min-width: 0; padding: 0 6px; font-size: .8rem; }
    .period-item[b-njdig8fgrt] { padding: 12px 14px; }
    .info-value[b-njdig8fgrt] { font-size: .88rem; }
    .day-card[b-njdig8fgrt] { padding: 15px; border-radius: 12px; }
    .day-card-header[b-njdig8fgrt] { flex-direction: row; align-items: flex-start; gap: 10px; }
    .day-info[b-njdig8fgrt] { flex: 1 1 auto; }
    .schedule-badge[b-njdig8fgrt] {
        flex: 0 1 48%;
        max-width: 48%;
        overflow-wrap: anywhere;
        text-align: center;
        text-overflow: clip;
        white-space: normal;
    }
}

@media (max-width: 400px) {
    .nav-button[b-njdig8fgrt] { padding: 0 4px; font-size: .73rem; }
    .day-name[b-njdig8fgrt] { font-size: .95rem; }
    .slot-time[b-njdig8fgrt] { font-size: .9rem; }
    .slot-break[b-njdig8fgrt] { font-size: .85rem; }
    .schedule-badge[b-njdig8fgrt] { max-width: 46%; padding: 6px 8px; font-size: .72rem; }
}

@media (prefers-reduced-motion: reduce) {
    .user-info[b-njdig8fgrt], .period-item[b-njdig8fgrt], .input[b-njdig8fgrt], .nav-button[b-njdig8fgrt], .planning-button[b-njdig8fgrt], .day-card[b-njdig8fgrt] { transition: none; }
}
/* /Components/Pages/Pointage.razor.rz.scp.css */
.pointage-page[b-y2py5zinjl] {
    position: relative;
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 40px 24px;
    overflow: hidden;
    box-sizing: border-box;
    background:
        radial-gradient(circle at 18% 18%, rgba(27, 177, 167, .22), transparent 24rem),
        radial-gradient(circle at 82% 78%, rgba(18, 52, 86, .10), transparent 24rem),
        linear-gradient(180deg, #f8fcfc 0%, #edf7f6 100%);
    color: #123456;
    font-family: "DM Sans", "Segoe UI", sans-serif;
}

.pointage-page[b-y2py5zinjl]::before,
.pointage-page[b-y2py5zinjl]::after {
    position: absolute;
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.pointage-page[b-y2py5zinjl]::before {
    top: -170px;
    right: -130px;
    width: 420px;
    height: 420px;
    background: rgba(27, 177, 167, .14);
}

.pointage-page[b-y2py5zinjl]::after {
    bottom: -190px;
    left: -150px;
    width: 460px;
    height: 460px;
    background: rgba(18, 52, 86, .07);
}

.pointage-card[b-y2py5zinjl] {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    padding: 34px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(190, 224, 221, .95);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(250, 254, 253, .93));
    box-shadow: 0 26px 70px rgba(18, 52, 86, .14), 0 1px 0 rgba(255, 255, 255, .9) inset;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.pointage-card[b-y2py5zinjl]::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #1bb1a7, #7fd5c8);
    content: "";
}

.title[b-y2py5zinjl] {
    margin: 2px 0 28px;
    color: #123456;
    font-size: 1.9rem;
    font-weight: 850;
    letter-spacing: -.03em;
    line-height: 1.1;
    text-align: center;
}

.error[b-y2py5zinjl],
.success[b-y2py5zinjl] {
    margin: 0 0 16px;
    padding: 11px 12px;
    border-radius: 8px;
    font-size: .86rem;
    font-weight: 700;
}

.error[b-y2py5zinjl] {
    border: 1px solid #efc5c5;
    background: #fff7f7;
    color: #a43d3d;
}

.success[b-y2py5zinjl] {
    border: 1px solid #bde4d4;
    background: #f2fbf7;
    color: #217356;
}

.user-info[b-y2py5zinjl],
.datetime-item[b-y2py5zinjl] {
    padding: 14px 16px;
    border: 1px solid #d6ebe9;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #f6fbfa);
    box-shadow: 0 9px 18px rgba(18, 52, 86, .04);
    transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.user-info[b-y2py5zinjl] {
    margin-bottom: 12px;
}

.user-info:hover[b-y2py5zinjl],
.datetime-item:hover[b-y2py5zinjl] {
    border-color: #b7deda;
    box-shadow: 0 12px 24px rgba(18, 52, 86, .07);
    transform: translateY(-1px);
}

.datetime-box[b-y2py5zinjl] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px;
}

.datetime-item[b-y2py5zinjl] {
    min-width: 0;
}

.info-label[b-y2py5zinjl] {
    display: block;
    margin-bottom: 5px;
    color: #1b8f87;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.info-value[b-y2py5zinjl] {
    color: #123456;
    font-size: .98rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.form-group[b-y2py5zinjl] {
    margin-bottom: 18px;
}

.form-group > label[b-y2py5zinjl] {
    display: block;
    margin-bottom: 9px;
    color: #607b84;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.radio-group[b-y2py5zinjl] {
    margin-top: 4px;
}

.radio-group[b-y2py5zinjl],
.radio-group .blazor-radio-group[b-y2py5zinjl] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.radio-option[b-y2py5zinjl] {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 9px;
    min-width: 120px;
    margin: 0;
    padding: 11px 14px;
    border: 1px solid #cfe2e5;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #f8fcfb);
    color: #45636c;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 700;
    box-shadow: 0 9px 18px rgba(18, 52, 86, .035);
    transition: border-color 150ms ease, background 150ms ease, color 150ms ease, transform 150ms ease;
}

.radio-option:hover[b-y2py5zinjl] {
    border-color: #9dd4cf;
    background: #f1fbfa;
    color: #1b7973;
    transform: translateY(-1px);
}

.radio-option input[type="radio"][b-y2py5zinjl] {
    width: 17px;
    height: 17px;
    margin: 0;
    accent-color: #1bb1a7;
}

.input[b-y2py5zinjl] {
    width: 100%;
    min-height: 44px;
    padding: 0 42px 0 13px;
    box-sizing: border-box;
    border: 1px solid #cfe2e5;
    border-radius: 8px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23607b84' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"), linear-gradient(180deg, #fff 0%, #f8fcfb 100%);
    background-repeat: no-repeat;
    background-position: right 15px center, 0 0;
    color: #123456;
    font-size: .92rem;
    font-weight: 600;
    box-shadow: 0 9px 18px rgba(18, 52, 86, .045);
    transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.input:hover[b-y2py5zinjl] {
    border-color: #b7deda;
    background-color: #fff;
}

.input:focus[b-y2py5zinjl] {
    border-color: #1bb1a7;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(27, 177, 167, .14), 0 12px 24px rgba(18, 52, 86, .08);
    transform: translateY(-1px);
}

.input option[b-y2py5zinjl] {
    background: #fff;
    color: #123456;
}

.pointage-button[b-y2py5zinjl] {
    display: grid;
    width: 100%;
    min-height: 46px;
    place-items: center;
    margin-top: 8px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #1bb1a7, #38c2b8);
    color: #fff;
    cursor: pointer;
    font-size: .92rem;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(27, 177, 167, .24);
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.pointage-button:hover:not(:disabled)[b-y2py5zinjl],
.pointage-button:focus-visible:not(:disabled)[b-y2py5zinjl] {
    outline: none;
    background: linear-gradient(135deg, #159a92, #2eb1a8);
    box-shadow: 0 18px 36px rgba(27, 177, 167, .32);
    transform: translateY(-1px);
}

.pointage-button:active:not(:disabled)[b-y2py5zinjl] {
    transform: translateY(0);
}

.pointage-button:disabled[b-y2py5zinjl] {
    cursor: wait;
    opacity: .72;
}

.location-dialog-backdrop[b-y2py5zinjl] {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(18, 52, 86, .42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.location-dialog[b-y2py5zinjl] {
    width: min(100%, 430px);
    padding: 26px;
    border: 1px solid rgba(190, 224, 221, .95);
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #f8fcfb);
    color: #123456;
    box-shadow: 0 26px 70px rgba(18, 52, 86, .24);
}

.location-dialog h2[b-y2py5zinjl] {
    margin: 0 0 10px;
    color: #123456;
    font-size: 1.25rem;
    font-weight: 800;
}

.location-dialog p[b-y2py5zinjl] {
    margin: 0;
    color: #607b84;
    font-size: .96rem;
    line-height: 1.55;
}

.location-dialog-actions[b-y2py5zinjl] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px;
}

.location-dialog-primary[b-y2py5zinjl],
.location-dialog-secondary[b-y2py5zinjl] {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
    transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.location-dialog-primary[b-y2py5zinjl] {
    background: linear-gradient(135deg, #1bb1a7, #38c2b8);
    color: #fff;
    box-shadow: 0 10px 22px rgba(27, 177, 167, .22);
}

.location-dialog-primary:hover:not(:disabled)[b-y2py5zinjl] {
    background: linear-gradient(135deg, #159a92, #2eb1a8);
    transform: translateY(-1px);
}

.location-dialog-primary:disabled[b-y2py5zinjl] {
    cursor: wait;
    opacity: .72;
}

.location-dialog-secondary[b-y2py5zinjl] {
    border-color: #cfe2e5;
    background: #fff;
    color: #45636c;
}

.location-dialog-secondary:hover[b-y2py5zinjl] {
    border-color: #9dd4cf;
    background: #f1fbfa;
    color: #1b7973;
}

@media (max-width: 900px) {
    .pointage-page[b-y2py5zinjl] {
        min-height: calc(100vh - 62px);
    }
}

@media (max-width: 600px) {
    .pointage-page[b-y2py5zinjl] {
        align-items: start;
        padding: 28px 16px;
    }

    .pointage-card[b-y2py5zinjl] {
        padding: 28px 20px 24px;
        border-radius: 20px;
    }

    .title[b-y2py5zinjl] {
        margin-bottom: 22px;
        font-size: 1.65rem;
    }

    .datetime-box[b-y2py5zinjl] {
        gap: 10px;
    }

    .datetime-item[b-y2py5zinjl] {
        padding: 12px;
    }

    .info-value[b-y2py5zinjl] {
        font-size: .86rem;
    }

    .radio-option[b-y2py5zinjl] {
        min-width: 0;
    }

    .location-dialog[b-y2py5zinjl] {
        padding: 22px;
    }

    .location-dialog-actions[b-y2py5zinjl] {
        flex-direction: column-reverse;
    }

    .location-dialog-primary[b-y2py5zinjl],
    .location-dialog-secondary[b-y2py5zinjl] {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .user-info[b-y2py5zinjl],
    .datetime-item[b-y2py5zinjl],
    .radio-option[b-y2py5zinjl],
    .input[b-y2py5zinjl],
    .pointage-button[b-y2py5zinjl],
    .location-dialog-primary[b-y2py5zinjl],
    .location-dialog-secondary[b-y2py5zinjl] {
        transition: none;
    }
}
/* /Components/Pages/Settings.razor.rz.scp.css */
.settings-page[b-ogps7qs075] {
    position: relative;
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 24px;
    overflow: hidden;
    box-sizing: border-box;
    background:
        radial-gradient(circle at 18% 18%, rgba(27, 177, 167, .22), transparent 24rem),
        radial-gradient(circle at 82% 78%, rgba(18, 52, 86, .10), transparent 24rem),
        linear-gradient(180deg, #f8fcfc 0%, #edf7f6 100%);
    color: #123456;
    font-family: "DM Sans", "Segoe UI", sans-serif;
}

.settings-page[b-ogps7qs075]::before,
.settings-page[b-ogps7qs075]::after {
    position: absolute;
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.settings-page[b-ogps7qs075]::before {
    top: -170px;
    right: -130px;
    width: 420px;
    height: 420px;
    background: rgba(27, 177, 167, .14);
}

.settings-page[b-ogps7qs075]::after {
    bottom: -190px;
    left: -150px;
    width: 460px;
    height: 460px;
    background: rgba(18, 52, 86, .07);
}

.settings-card[b-ogps7qs075] {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    padding: 34px 30px 30px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(190, 224, 221, .95);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(250, 254, 253, .93));
    box-shadow: 0 26px 70px rgba(18, 52, 86, .14), 0 1px 0 rgba(255, 255, 255, .9) inset;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.settings-card[b-ogps7qs075]::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #1bb1a7, #7fd5c8);
    content: "";
}

.settings-top[b-ogps7qs075] { margin-bottom: 22px; }

.title[b-ogps7qs075] {
    margin: 2px 0 28px;
    color: #123456;
    font-size: 1.9rem;
    font-weight: 850;
    letter-spacing: -.03em;
    line-height: 1.1;
    text-align: center;
}

.section-card[b-ogps7qs075] {
    padding: 20px;
    border: 1px solid #d6ebe9;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff, #f6fbfa);
    box-shadow: 0 9px 18px rgba(18, 52, 86, .04);
}

.section-title[b-ogps7qs075] {
    margin: 0 0 18px;
    color: #123456;
    font-size: 1.15rem;
    font-weight: 800;
}

.form-group[b-ogps7qs075] { margin-bottom: 16px; }

.form-group label[b-ogps7qs075] {
    display: block;
    margin-bottom: 9px;
    color: #607b84;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.input[b-ogps7qs075] {
    width: 100%;
    min-height: 44px;
    padding: 0 42px 0 13px;
    box-sizing: border-box;
    border: 1px solid #cfe2e5;
    border-radius: 8px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23607b84' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"), linear-gradient(180deg, #fff 0%, #f8fcfb 100%);
    background-repeat: no-repeat;
    background-position: right 15px center, 0 0;
    color: #123456;
    font-size: .92rem;
    font-weight: 600;
    box-shadow: 0 9px 18px rgba(18, 52, 86, .045);
    transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.input:hover[b-ogps7qs075] { border-color: #b7deda; background-color: #fff; }
.input:focus[b-ogps7qs075] { border-color: #1bb1a7; background-color: #fff; box-shadow: 0 0 0 4px rgba(27, 177, 167, .14), 0 12px 24px rgba(18, 52, 86, .08); transform: translateY(-1px); }
.input option[b-ogps7qs075] { background: #fff; color: #123456; }

.current-language-box[b-ogps7qs075] {
    margin-bottom: 16px;
    padding: 14px 16px;
    border: 1px solid #d6ebe9;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #f6fbfa);
    box-shadow: 0 9px 18px rgba(18, 52, 86, .04);
    transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.current-language-box:hover[b-ogps7qs075] { border-color: #b7deda; box-shadow: 0 12px 24px rgba(18, 52, 86, .07); transform: translateY(-1px); }
.info-label[b-ogps7qs075] { display: block; margin-bottom: 5px; color: #1b8f87; font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.info-value[b-ogps7qs075] { color: #123456; font-size: .98rem; font-weight: 700; overflow-wrap: anywhere; }

.error[b-ogps7qs075],
.success[b-ogps7qs075] { margin: 0 0 16px; padding: 11px 12px; border-radius: 8px; font-size: .86rem; font-weight: 700; }
.error[b-ogps7qs075] { border: 1px solid #efc5c5; background: #fff7f7; color: #a43d3d; }
.success[b-ogps7qs075] { border: 1px solid #bde4d4; background: #f2fbf7; color: #217356; }

.settings-button[b-ogps7qs075] {
    display: grid;
    width: 100%;
    min-height: 46px;
    place-items: center;
    margin-top: 6px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #1bb1a7, #38c2b8);
    color: #fff;
    cursor: pointer;
    font-size: .92rem;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(27, 177, 167, .24);
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.settings-button:hover[b-ogps7qs075],
.settings-button:focus-visible[b-ogps7qs075] { outline: none; background: linear-gradient(135deg, #159a92, #2eb1a8); box-shadow: 0 18px 36px rgba(27, 177, 167, .32); transform: translateY(-1px); }
.settings-button:active[b-ogps7qs075] { transform: translateY(0); }

@media (max-width: 900px) {
    .settings-page[b-ogps7qs075] { min-height: calc(100vh - 62px); padding: 28px 16px; }
    .settings-card[b-ogps7qs075] { padding: 28px 20px 24px; border-radius: 20px; }
}

@media (max-width: 600px) {
    .settings-page[b-ogps7qs075] { padding: 28px 16px; }
    .settings-card[b-ogps7qs075] { padding: 28px 20px 24px; }
    .title[b-ogps7qs075] { margin-bottom: 22px; font-size: 1.65rem; }
    .section-card[b-ogps7qs075] { padding: 16px; border-radius: 12px; }
    .section-title[b-ogps7qs075] { font-size: 1.02rem; }
    .info-value[b-ogps7qs075] { font-size: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
    .input[b-ogps7qs075], .current-language-box[b-ogps7qs075], .settings-button[b-ogps7qs075] { transition: none; }
}
