/* /Components/Layout/HeaderToast.razor.rz.scp.css */
/* ── Header Toast ─────────────────────────────────────────────────────────── */




/* ── Wrapper pill ─────────────────────────────────────────────────────────── */

.ht-wrapper[b-1988wnb1f6] {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 35px;
    max-width: 640px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--ht-border, rgba(255, 255, 255, 0.28));
    box-shadow: none;
    z-index: 99999 !important;
}

/* ── Enter / Leave animations ─────────────────────────────────────────────── */

.ht-enter[b-1988wnb1f6] {
    animation: ht-pop-in-b-1988wnb1f6 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ht-leave[b-1988wnb1f6] {
    animation: ht-pop-out-b-1988wnb1f6 0.22s cubic-bezier(0.55, 0, 1, 0.45) both;
}

@keyframes ht-pop-in-b-1988wnb1f6 {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0);    }
}

@keyframes ht-pop-out-b-1988wnb1f6 {
    from { opacity: 1; transform: translateY(0);    }
    to   { opacity: 0; transform: translateY(-6px); }
}

/* ── Style variants ───────────────────────────────────────────────────────── */

/* Info — solid steel blue */
.ht-style-info[b-1988wnb1f6] {
    --ht-bg:             #17a2b8;
    --ht-border:         rgba(255, 255, 255, 0.18);
    --ht-icon-bg:        rgba(0, 0, 0, 0.18);
    --ht-icon-sep:       rgba(255, 255, 255, 0.14);
    --ht-title-color:    #ffffff;
    --ht-sep-color:      rgba(255, 255, 255, 0.38);
    --ht-msg-color:      rgba(255, 255, 255, 0.82);
    --ht-progress:       rgba(255, 255, 255, 0.55);
    --ht-progress-track: rgba(0, 0, 0, 0.20);
    --ht-badge-bg:       rgba(0, 0, 0, 0.22);
    --ht-badge-color:    rgba(255, 255, 255, 0.90);
    background: var(--ht-bg);
}

/* Success — solid forest green */
.ht-style-success[b-1988wnb1f6] {
    --ht-bg:             #28a745;
    --ht-border:         rgba(255, 255, 255, 0.18);
    --ht-icon-bg:        rgba(0, 0, 0, 0.18);
    --ht-icon-sep:       rgba(255, 255, 255, 0.14);
    --ht-title-color:    #ffffff;
    --ht-sep-color:      rgba(255, 255, 255, 0.38);
    --ht-msg-color:      rgba(255, 255, 255, 0.82);
    --ht-progress:       rgba(255, 255, 255, 0.55);
    --ht-progress-track: rgba(0, 0, 0, 0.20);
    --ht-badge-bg:       rgba(0, 0, 0, 0.22);
    --ht-badge-color:    rgba(255, 255, 255, 0.90);
    background: var(--ht-bg);
}

/* Warning — solid amber, dark text for WCAG contrast */
.ht-style-warning[b-1988wnb1f6] {
    --ht-bg:             #ffc107;
    --ht-border:         rgba(0, 0, 0, 0.16);
    --ht-icon-bg:        rgba(0, 0, 0, 0.14);
    --ht-icon-sep:       rgba(0, 0, 0, 0.14);
    --ht-title-color:    #212529;
    --ht-sep-color:      rgba(33, 37, 41, 0.40);
    --ht-msg-color:      rgba(33, 37, 41, 0.75);
    --ht-progress:       rgba(33, 37, 41, 0.40);
    --ht-progress-track: rgba(33, 37, 41, 0.14);
    --ht-badge-bg:       rgba(0, 0, 0, 0.16);
    --ht-badge-color:    rgba(33, 37, 41, 0.88);
    background: var(--ht-bg);
}

/* Danger — solid crimson */
.ht-style-danger[b-1988wnb1f6] {
    --ht-bg:             #dc3545;
    --ht-border:         rgba(255, 255, 255, 0.18);
    --ht-icon-bg:        rgba(0, 0, 0, 0.18);
    --ht-icon-sep:       rgba(255, 255, 255, 0.14);
    --ht-title-color:    #ffffff;
    --ht-sep-color:      rgba(255, 255, 255, 0.38);
    --ht-msg-color:      rgba(255, 255, 255, 0.82);
    --ht-progress:       rgba(255, 255, 255, 0.55);
    --ht-progress-track: rgba(0, 0, 0, 0.20);
    --ht-badge-bg:       rgba(0, 0, 0, 0.22);
    --ht-badge-color:    rgba(255, 255, 255, 0.90);
    background: var(--ht-bg);
}

/* ── Icon column ──────────────────────────────────────────────────────────── */

.ht-icon-col[b-1988wnb1f6] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 35px;
    height: 100%;
    
    border-right: 1px solid var(--ht-icon-sep, rgba(255, 255, 255, 0.14));
    border-radius: 3px 0 0 3px;
}

.ht-icon[b-1988wnb1f6] {
    font-size: 13px;
    line-height: 1;
    display: block;
    color: var(--ht-title-color, #fff);
}

.ht-icon.icon-info[b-1988wnb1f6]::before {
    content: "\e800";
    font-family: 'e-icons';
}

.ht-icon.icon-success[b-1988wnb1f6]::before {
    content: "\e72b";
    font-family: 'e-icons';
}

.ht-icon.icon-warning[b-1988wnb1f6]::before {
    content: "\e88b";
    font-family: 'e-icons';
}

.ht-icon.icon-danger[b-1988wnb1f6]::before {
    content: "\e878";
    font-family: 'e-icons';
}

/* ── Text column ──────────────────────────────────────────────────────────── */

.ht-text-col[b-1988wnb1f6] {
    flex: 1;
    min-width: 0;
    padding: 0 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    padding-top: 2px;
    padding-bottom: 2px;
}

/* Title — full opacity, bold */
.ht-title[b-1988wnb1f6] {
    font-size: 0.73rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    flex-shrink: 0;
    color: var(--ht-title-color, #fff);
    letter-spacing: 0.01em;
}

/* Separator dot */
.ht-sep[b-1988wnb1f6] {
    flex-shrink: 0;
    font-size: 0.6rem;
    line-height: 1;
    color: var(--ht-sep-color, rgba(255, 255, 255, 0.45));
    user-select: none;
}

/* Message — clearly readable but visually secondary to title */
.ht-message[b-1988wnb1f6] {
    font-size: 0.72rem;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--ht-msg-color, rgba(255, 255, 255, 0.88));
}

/* ── Queue badge ──────────────────────────────────────────────────────────── */

.ht-queue-badge[b-1988wnb1f6] {
    flex-shrink: 0;
    height: 16px;
    min-width: 20px;
    padding: 0 5px;
    border-radius: 3px;
    background: var(--ht-badge-bg, rgba(0, 0, 0, 0.22));
    color: var(--ht-badge-color, rgba(255, 255, 255, 0.90));
    font-size: 0.60rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    border: 1px solid var(--ht-icon-sep, rgba(255, 255, 255, 0.16));
}

/* ── Close button ─────────────────────────────────────────────────────────── */

.ht-close[b-1988wnb1f6] {
    flex-shrink: 0;
    width: 28px;
    height: 100%;
    padding: 0;
    background: transparent;
    border: none;
    border-left: 1px solid var(--ht-icon-sep, rgba(255, 255, 255, 0.14));
    cursor: pointer;
    color: var(--ht-title-color, #fff);
    opacity: 0.60;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s ease, background 0.15s ease;
    border-radius: 0 3px 3px 0;
}

.ht-close:hover[b-1988wnb1f6] {
    opacity: 1;
    background: rgba(0, 0, 0, 0.16);
}

/* ── Auto-close progress bar ──────────────────────────────────────────────── */

.ht-progress-track[b-1988wnb1f6] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--ht-progress-track, rgba(0, 0, 0, 0.18));
    border-radius: 0;
    overflow: hidden;
}

.ht-progress-bar[b-1988wnb1f6] {
    height: 100%;
    width: 100%;
    background: var(--ht-progress, rgba(255, 255, 255, 0.65));
    transform-origin: left center;
    animation: ht-drain-b-1988wnb1f6 linear forwards;
    /* animation-duration is set inline */
}

@keyframes ht-drain-b-1988wnb1f6 {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}

/* /Components/Layout/MainLayoutSF.razor.rz.scp.css */
/* Syncfusion MainLayout Styles */

#sidebar-wrapper[b-3ub9athdw5] {
    --morse-background-color: #07519C;
    
}

.defaultToolbar[b-3ub9athdw5] {
    /*background: linear-gradient(90deg, #07519C 0%, #0860b3 52%, #0a5aa7 100%);*/
    background-color: #07519C;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    /*box-shadow: 0 8px 20px rgba(5, 47, 91, 0.18);*/
    padding: 0 10px 0 6px;
    position: relative;
    z-index: 999 !important;
    min-height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.toolbar-sidebar-open[b-3ub9athdw5] {
    --layout-sidebar-offset: 264px;
}

.toolbar-sidebar-closed[b-3ub9athdw5] {
    --layout-sidebar-offset: 58px;
}

.layout-toolbar-shell[b-3ub9athdw5] {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.layout-toolbar-left-group[b-3ub9athdw5] {
    display: grid;
    grid-template-columns: var(--layout-sidebar-offset, 264px) minmax(0, 1fr);
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    min-width: 0;
    height: 40px;
}

.layout-toolbar-brand[b-3ub9athdw5] {
    display: flex;
    align-items: center;
    gap: 8px;
    grid-column: 2;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
}

.layout-toolbar-app[b-3ub9athdw5] {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.layout-toolbar-breadcrumb-pill[b-3ub9athdw5] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    max-width: min(56vw, 760px);
    padding: 5px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    box-shadow: 0 6px 16px rgba(3, 28, 56, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
}

.layout-toolbar-breadcrumb-pill i[b-3ub9athdw5] {
    color: #d7e9ff;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.layout-toolbar-actions[b-3ub9athdw5] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    height: 40px;
}

/* Slot that holds the in-toolbar HeaderToast pill */
.layout-toolbar-toast-slot[b-3ub9athdw5] {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    overflow: hidden;
    height: 40px;
}

/* DEBUG toast test button � distinct amber tint */
.toast-test-btn[b-3ub9athdw5] {
    border-color: rgba(251, 191, 36, 0.45) !important;
    background: rgba(251, 191, 36, 0.14) !important;
}

.toast-test-btn:hover[b-3ub9athdw5] {
    background: rgba(251, 191, 36, 0.28) !important;
    border-color: rgba(251, 191, 36, 0.70) !important;
}

.toast-test-btn i[b-3ub9athdw5] {
    color: #fbbf24;
}

.layout-user-pill[b-3ub9athdw5] {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    min-width: 0;
    padding: 4px 7px 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    height: 30px;
    box-sizing: border-box;
}

.layout-user-name[b-3ub9athdw5] {
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
}

.layout-user-divider[b-3ub9athdw5] {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

.layout-company-picker[b-3ub9athdw5] {
    display: flex;
    align-items: center;
    min-width: 0;
    height: 30px;
}

.layout-company-picker > *[b-3ub9athdw5] {
    min-width: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

#sidebar-wrapper[b-3ub9athdw5]  .layout-company-picker .company-dropdown,
#sidebar-wrapper[b-3ub9athdw5]  .layout-company-picker select,
#sidebar-wrapper[b-3ub9athdw5]  .layout-company-picker .e-input-group,
#sidebar-wrapper[b-3ub9athdw5]  .layout-company-picker .e-control-wrapper,
#sidebar-wrapper[b-3ub9athdw5]  .layout-company-picker .rz-dropdown,
#sidebar-wrapper[b-3ub9athdw5]  .layout-company-picker .rz-inputtext,
#sidebar-wrapper[b-3ub9athdw5]  .layout-company-picker .custom-dropdown {
    min-height: 28px !important;
    height: 28px !important;
    font-size: 0.68rem !important;
    line-height: 1.1 !important;
    box-sizing: border-box !important;
}

#sidebar-wrapper[b-3ub9athdw5]  .layout-company-picker .company-dropdown,
#sidebar-wrapper[b-3ub9athdw5]  .layout-company-picker select,
#sidebar-wrapper[b-3ub9athdw5]  .layout-company-picker .rz-dropdown,
#sidebar-wrapper[b-3ub9athdw5]  .layout-company-picker .custom-dropdown {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

#sidebar-wrapper[b-3ub9athdw5]  .layout-company-picker .e-input,
#sidebar-wrapper[b-3ub9athdw5]  .layout-company-picker input,
#sidebar-wrapper[b-3ub9athdw5]  .layout-company-picker .rz-inputtext {
    font-size: 0.68rem !important;
    line-height: 1.1 !important;
}

.custom-menu-button[b-3ub9athdw5] {
    background: rgba(255, 255, 255, 0.10);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    width: 30px;
    height: 30px;
    box-shadow: 0 6px 14px rgba(4, 34, 67, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    grid-column: 1;
    justify-self: start;
    margin-left: 8px;
}

.custom-menu-button[b-3ub9athdw5]::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;
}

.custom-menu-button:hover[b-3ub9athdw5] {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 20px rgba(4, 34, 67, 0.20);
    transform: translateY(-1px);
}

.custom-menu-button:hover[b-3ub9athdw5]::before {
    left: 100%;
}

.custom-menu-button:active[b-3ub9athdw5] {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(4, 34, 67, 0.20);
}

.custom-menu-button i[b-3ub9athdw5] {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.custom-menu-button:hover i[b-3ub9athdw5] {
    transform: scale(1.1);
}

.custom-notification-button[b-3ub9athdw5] {
    background: rgba(255, 255, 255, 0.10);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    width: 30px;
    height: 30px;
    box-shadow: 0 6px 14px rgba(4, 34, 67, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.custom-notification-button[b-3ub9athdw5]::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;
}

.custom-notification-button:hover[b-3ub9athdw5] {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 20px rgba(4, 34, 67, 0.20);
    transform: translateY(-1px);
}

.custom-notification-button:hover[b-3ub9athdw5]::before {
    left: 100%;
}

.custom-notification-button.active[b-3ub9athdw5] {
    background: linear-gradient(135deg, #1fb8a5, #2fd4bf);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 20px rgba(18, 115, 110, 0.28);
}

.custom-notification-button.active:hover[b-3ub9athdw5] {
    background: linear-gradient(135deg, #25c4b1, #39dec8);
    box-shadow: 0 12px 22px rgba(18, 115, 110, 0.32);
}

.custom-notification-button:active[b-3ub9athdw5] {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(4, 34, 67, 0.20);
}

.custom-notification-button.active:active[b-3ub9athdw5] {
    box-shadow: 0 5px 12px rgba(18, 115, 110, 0.24);
}

.custom-notification-button i[b-3ub9athdw5] {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.custom-notification-button:hover i[b-3ub9athdw5] {
    transform: scale(1.1);
}

.custom-notification-button.active i[b-3ub9athdw5] {
    animation: bellRing 0.8s ease-in-out;
}

.notification-indicator[b-3ub9athdw5] {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background: #ff4757;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

.custom-menu-button:focus[b-3ub9athdw5],
.custom-notification-button:focus[b-3ub9athdw5] {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.custom-menu-button i[b-3ub9athdw5],
.custom-notification-button i[b-3ub9athdw5] {
    animation: iconFadeIn 0.2s ease-in-out;
}

#sidebar-wrapper[b-3ub9athdw5]  .profile-menu-btn.e-dropdown-btn {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.12);
    padding: 0;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    box-shadow: 0 6px 14px rgba(4, 34, 67, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: box-shadow 0.2s ease, transform 0.1s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 30px;
    line-height: 1;
}

#sidebar-wrapper[b-3ub9athdw5]  .profile-menu-btn.e-dropdown-btn .e-btn-icon,
#sidebar-wrapper[b-3ub9athdw5]  .profile-menu-btn.e-dropdown-btn .e-caret {
    width: 100%;
    height: 100%;
    line-height: 30px;
}

#sidebar-wrapper[b-3ub9athdw5]  .profile-menu-btn.e-dropdown-btn:hover {
    box-shadow: 0 10px 20px rgba(4, 34, 67, 0.22);
    transform: translateY(-1px);
}

#sidebar-wrapper[b-3ub9athdw5]  .profile-menu-btn.e-dropdown-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(4, 34, 67, 0.18);
}

#sidebar-wrapper[b-3ub9athdw5]  .profile-menu-btn.e-dropdown-btn .e-btn-icon.profile-avatar-icon {
    background: url('images/morse_icon.png') no-repeat center/cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: inherit;
    display: block;
}

#sidebar-wrapper[b-3ub9athdw5]  .profile-menu-btn.e-dropdown-btn .e-btn-icon.profile-avatar-icon::before {
    content: '';
}

#sidebar-wrapper[b-3ub9athdw5]  .e-menu-item .e-menu-icon.profile-avatar-icon {
    background: url('images/morse_icon.png') no-repeat center/cover;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

#sidebar-wrapper[b-3ub9athdw5]  .e-menu-item .e-menu-icon.profile-avatar-icon::before {
    content: '';
}

.breadcrumb-text[b-3ub9athdw5] {
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0;
    opacity: 0.98;
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 0;
}

/* Scoped ::deep selectors - only apply within sidebar-wrapper */
#sidebar-wrapper[b-3ub9athdw5]  .e-sidebar.e-left {
    top: 40px !important;
    background-color: var(--morse-background-color, #07519C);
}

/* Only apply to TreeView in the sidebar */
.default-sidebar[b-3ub9athdw5]  .e-treeview .e-list-text {
    color: #fff !important;
    font-size: 14px;
}

.default-sidebar[b-3ub9athdw5]  .e-treeview .e-list-item.e-active > .e-text-content .e-icon-collapsible,
.default-sidebar[b-3ub9athdw5]  .e-treeview .e-list-item.e-active > .e-text-content .e-icon-expandable {
    color: #fff !important;
}

.default-sidebar[b-3ub9athdw5]  .e-treeview .e-list-item.e-active > .e-fullrow {
    background-color: #f0eded85 !important;
}

.default-sidebar[b-3ub9athdw5]  .e-treeview .e-list-item.e-active.e-hover > .e-fullrow,
.default-sidebar[b-3ub9athdw5]  .e-treeview .e-list-item.e-active.e-node-focus > .e-fullrow {
    background-color: #f0eded85 !important;
    border-color: #f0eded85 !important;
}

.default-sidebar[b-3ub9athdw5] {
    background-color: var(--morse-background-color);
    border-right: 1px solid var(--rz-border-color, #dee2e6);
    box-sizing: border-box;
    position: relative;
    top: 40px;
    /* prevent shrinking/gaps when flex layout changes */
    flex-shrink: 0;
    z-index: 1000 !important; /* keep below toolbar */
}

/* Remove width forcing so SfSidebar can animate open/close properly */
.default-sidebar .e-sidebar[b-3ub9athdw5],
.default-sidebar .e-content-animation[b-3ub9athdw5] {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    background-color: inherit !important; /* ensure no white track shows */
}

/* Only the actual scroll container should reserve gutter */
.sidebar-scroll[b-3ub9athdw5],
.default-sidebar .e-treeview[b-3ub9athdw5],
.default-sidebar [style*="overflow-y: auto"][b-3ub9athdw5],
.default-sidebar .e-sidebar[b-3ub9athdw5],
.default-sidebar .e-content-animation[b-3ub9athdw5] {
    scrollbar-gutter: stable; /* not both-edges */
    box-sizing: border-box;
}

/* Slight padding so content doesn't sit under the thumb */
.sidebar-scroll[b-3ub9athdw5],
.default-sidebar [style*="overflow-y: auto"][b-3ub9athdw5],
.default-sidebar .e-treeview[b-3ub9athdw5] {
    padding-right: 4px;
    background-clip: padding-box;
}

/* Custom Scrollbar Styles for Sidebar - WebKit browsers */
.default-sidebar[b-3ub9athdw5]::-webkit-scrollbar {
    width: 6px;
}

/* Make the track use the sidebar background so underlying page color cannot show through */
.default-sidebar[b-3ub9athdw5]::-webkit-scrollbar-track {
    background: var(--rz-sidebar-background-color, #f8f9fa);
    margin: 4px 0;
}

.default-sidebar[b-3ub9athdw5]::-webkit-scrollbar-thumb {
    background-color: rgba(7, 81, 156, 0.4);
    border-radius: 3px;
}

.default-sidebar[b-3ub9athdw5]::-webkit-scrollbar-thumb:hover {
    background-color: rgba(7, 81, 156, 0.6);
}

/* Apply to Syncfusion sidebar content wrapper */
.default-sidebar .e-sidebar[b-3ub9athdw5],
.default-sidebar .e-content-animation[b-3ub9athdw5] {
    scrollbar-width: thin;
    scrollbar-color: rgba(7, 81, 156, 0.4) var(--rz-sidebar-background-color, #f8f9fa);
}

.default-sidebar .e-sidebar[b-3ub9athdw5]::-webkit-scrollbar,
.default-sidebar .e-content-animation[b-3ub9athdw5]::-webkit-scrollbar {
    width: 6px;
}

.default-sidebar .e-sidebar[b-3ub9athdw5]::-webkit-scrollbar-track,
.default-sidebar .e-content-animation[b-3ub9athdw5]::-webkit-scrollbar-track {
    background: var(--rz-sidebar-background-color, #f8f9fa);
    margin: 4px 0;
}

.default-sidebar .e-sidebar[b-3ub9athdw5]::-webkit-scrollbar-thumb,
.default-sidebar .e-content-animation[b-3ub9athdw5]::-webkit-scrollbar-thumb {
    background-color: rgba(7, 81, 156, 0.4);
    border-radius: 3px;
}

.default-sidebar .e-sidebar[b-3ub9athdw5]::-webkit-scrollbar-thumb:hover,
.default-sidebar .e-content-animation[b-3ub9athdw5]::-webkit-scrollbar-thumb:hover {
    background-color: rgba(7, 81, 156, 0.6);
}

/* Apply to TreeView container inside sidebar */
.default-sidebar .e-treeview[b-3ub9athdw5],
.default-sidebar [style*="overflow-y: auto"][b-3ub9athdw5] {
    scrollbar-width: thin;
    scrollbar-color: rgba(7, 81, 156, 0.4) var(--rz-sidebar-background-color, #f8f9fa);
}

.default-sidebar .e-treeview[b-3ub9athdw5]::-webkit-scrollbar,
.default-sidebar [style*="overflow-y: auto"][b-3ub9athdw5]::-webkit-scrollbar {
    width: 6px;
}

.default-sidebar .e-treeview[b-3ub9athdw5]::-webkit-scrollbar-track,
.default-sidebar [style*="overflow-y: auto"][b-3ub9athdw5]::-webkit-scrollbar-track {
    background: var(--rz-sidebar-background-color, #f8f9fa);
    margin: 4px 0;
}

.default-sidebar .e-treeview[b-3ub9athdw5]::-webkit-scrollbar-thumb,
.default-sidebar [style*="overflow-y: auto"][b-3ub9athdw5]::-webkit-scrollbar-thumb {
    background-color: rgba(7, 81, 156, 0.4);
    border-radius: 3px;
}

.default-sidebar .e-treeview[b-3ub9athdw5]::-webkit-scrollbar-thumb:hover,
.default-sidebar [style*="overflow-y: auto"][b-3ub9athdw5]::-webkit-scrollbar-thumb:hover {
    background-color: rgba(7, 81, 156, 0.6);
}

/* Remove pseudo border that could contribute to visual gap */
/* .default-sidebar::after { removed } */

.default-sidebar .e-menu-wrapper[b-3ub9athdw5] {
    background-color: transparent;
}

.default-sidebar .e-menu-item[b-3ub9athdw5] {
    padding: 0.75rem 1rem;
}

.default-sidebar .e-menu-item:hover[b-3ub9athdw5] {
    background-color: var(--rz-sidebar-item-hover-background-color, rgba(0, 0, 0, 0.05));
}

.default-sidebar .e-menu-item.e-selected[b-3ub9athdw5] {
    background-color: var(--rz-sidebar-item-selected-background-color, #07519C);
    color: #fff;
}

.maincontent[b-3ub9athdw5] {
    background-color: var(--rz-body-background-color, #fff);
}

/* Profile Menu Dropdown Styles */
.e-dropdown-btn.e-caret-hide[b-3ub9athdw5]::after {
    content: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .default-sidebar[b-3ub9athdw5] {
        width: 100% !important;
    }
}

/* Alert Console Styles */
.alert[b-3ub9athdw5] {
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-danger[b-3ub9athdw5] {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* Button Styles */
.e-primary[b-3ub9athdw5] {
    background-color: #07519C;
    border-color: #07519C;
    color: #fff;
}

.e-primary:hover[b-3ub9athdw5] {
    background-color: #05407d;
    border-color: #05407d;
}

/* Notification Button States */
.e-info[b-3ub9athdw5] {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: #fff;
}

.e-outline.e-info[b-3ub9athdw5] {
    background-color: transparent;
    border-color: #17a2b8;
    color: #17a2b8;
}

.e-outline.e-info:hover[b-3ub9athdw5] {
    background-color: #17a2b8;
    color: #fff;
}
/* /Components/Morse/Company/Organization/Employees.razor.rz.scp.css */
.employees-main-tabs[b-arn411zm88] {
    --employees-accent: #214c73;
    --employees-accent-strong: #143450;
    --employees-accent-soft: #dce8f2;
    --employees-gold: #b58838;
    --employees-paper: #f6f1e7;
    --employees-surface: #fffdfa;
    --employees-surface-strong: #ffffff;
    --employees-line: #d9ccb5;
    --employees-line-strong: #c4b08a;
    --employees-ink: #24313d;
    --employees-muted: #66727d;
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(116, 92, 52, 0.18);
    background: radial-gradient(circle at top right, rgba(181, 136, 56, 0.18), transparent 28%), linear-gradient(180deg, #f8f4ec 0%, #efe7d9 100%);
    box-shadow: 0 24px 54px rgba(54, 47, 36, 0.12);
    overflow: hidden;
    font-family: "Segoe UI Variable Text", "Bahnschrift", "Trebuchet MS", sans-serif;
    max-height: calc(100vh - 80px);
}

.employees-main-tabs[b-arn411zm88]::after {
    content: "";
    position: absolute;
    inset: 62px 0 0 0;
    background: repeating-linear-gradient(
        180deg,
        rgba(181, 136, 56, 0.05) 0,
        rgba(181, 136, 56, 0.05) 1px,
        transparent 1px,
        transparent 46px
    );
    opacity: 0.35;
    pointer-events: none;
}

[b-arn411zm88] .employees-main-tabs > .e-tab-header {
    padding: 10px 12px 0;
    background: linear-gradient(90deg, #12324c 0%, #214c73 54%, #4f7a92 100%);
    border-bottom: none;
}

[b-arn411zm88] .employees-main-tabs > .e-tab-header .e-toolbar-item {
    margin-right: 8px;
}

[b-arn411zm88] .employees-main-tabs > .e-tab-header .e-tab-wrap {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 16px 16px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

[b-arn411zm88] .employees-main-tabs > .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.14);
}

[b-arn411zm88] .employees-main-tabs > .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
    background: var(--employees-surface);
    color: var(--employees-accent-strong);
    border-color: rgba(18, 50, 76, 0.12);
    box-shadow: 0 -1px 0 var(--employees-surface), 0 12px 20px rgba(18, 50, 76, 0.16);
}

[b-arn411zm88] .employees-main-tabs > .e-tab-header .e-tab-text,
[b-arn411zm88] .employees-main-tabs > .e-tab-header .e-tab-icon {
    color: inherit;
}

[b-arn411zm88] .employees-main-tabs > .e-content {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 16px;
}

.employees-grid-panel[b-arn411zm88],
.employees-detail-shell[b-arn411zm88] {
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--employees-line);
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(247, 241, 231, 0.94));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 14px 28px rgba(60, 52, 40, 0.08);
}

.employees-grid-panel[b-arn411zm88] {
    padding: 16px;
}

.employees-grid-panel[b-arn411zm88]::before,
.employees-detail-shell[b-arn411zm88]::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.employees-grid-panel[b-arn411zm88]::before {
    background: linear-gradient(135deg, rgba(181, 136, 56, 0.08), transparent 34%);
}

.employees-detail-shell[b-arn411zm88]::before {
    background: linear-gradient(180deg, rgba(33, 76, 115, 0.06), transparent 28%);
}

[b-arn411zm88] .employees-grid-panel .e-toolbar {
    background: transparent;
    border: none;
    padding-bottom: 10px;
}

[b-arn411zm88] .employees-grid-panel .e-toolbar .e-toolbar-items {
    min-height: 54px;
    padding: 8px 10px;
    border-radius: 14px;
    border: 1px solid rgba(133, 111, 72, 0.16);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

[b-arn411zm88] .employees-grid-panel .e-btn.e-outline,
[b-arn411zm88] .employees-detail-shell .e-btn.e-outline {
    border-radius: 10px;
    border-color: rgba(33, 76, 115, 0.28);
    background: rgba(255, 255, 255, 0.88);
    color: var(--employees-accent-strong);
    box-shadow: 0 4px 12px rgba(18, 50, 76, 0.08);
}

[b-arn411zm88] .employees-grid-panel .e-btn.e-outline:hover,
[b-arn411zm88] .employees-detail-shell .e-btn.e-outline:hover {
    background: var(--employees-accent);
    border-color: var(--employees-accent);
    color: #ffffff;
}

[b-arn411zm88] .employees-grid-panel .e-grid,
[b-arn411zm88] .employees-detail-tabs .e-grid {
    border: 1px solid var(--employees-line);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
}

[b-arn411zm88] .employees-grid-panel .e-gridheader,
[b-arn411zm88] .employees-detail-tabs .e-gridheader {
    border-bottom: 1px solid var(--employees-line);
    background: linear-gradient(180deg, #efe4cf 0%, #e8dbc4 100%);
}

[b-arn411zm88] .employees-grid-panel .e-headercell,
[b-arn411zm88] .employees-detail-tabs .e-headercell {
    border-color: rgba(217, 204, 181, 0.8);
    color: #6b4d1f;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

[b-arn411zm88] .employees-grid-panel .e-rowcell,
[b-arn411zm88] .employees-detail-tabs .e-rowcell {
    border-color: rgba(217, 204, 181, 0.72);
    color: var(--employees-ink);
}

[b-arn411zm88] .employees-grid-panel .e-altrow,
[b-arn411zm88] .employees-detail-tabs .e-altrow {
    background: rgba(241, 235, 225, 0.52);
}

[b-arn411zm88] .employees-grid-panel .e-row:hover .e-rowcell,
[b-arn411zm88] .employees-detail-tabs .e-row:hover .e-rowcell {
    background: rgba(33, 76, 115, 0.05);
}

[b-arn411zm88] .employees-grid-panel .e-selectionbackground,
[b-arn411zm88] .employees-grid-panel .e-active .e-rowcell,
[b-arn411zm88] .employees-detail-tabs .e-selectionbackground,
[b-arn411zm88] .employees-detail-tabs .e-active .e-rowcell {
    background: rgba(33, 76, 115, 0.10) !important;
}

[b-arn411zm88] .employees-grid-panel .e-gridpager {
    border-top: 1px solid var(--employees-line);
    background: rgba(255, 250, 242, 0.96);
}

.employees-grid-person-cell[b-arn411zm88] {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1.2;
}

.employees-grid-person-name[b-arn411zm88] {
    color: var(--employees-accent-strong);
    font-size: 0.92rem;
    font-weight: 700;
}

.employees-grid-person-meta[b-arn411zm88] {
    color: var(--employees-muted);
    font-size: 0.75rem;
}

.employees-detail-shell[b-arn411zm88] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
}

.employees-detail-header[b-arn411zm88] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(133, 111, 72, 0.18);
    background:
        radial-gradient(circle at top right, rgba(181, 136, 56, 0.12), transparent 30%),
        linear-gradient(135deg, #fffefb 0%, #f4ede1 100%);
    box-shadow: 0 10px 24px rgba(58, 49, 37, 0.08);
}

.employees-detail-header-actions[b-arn411zm88] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.employees-detail-badges[b-arn411zm88] {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.employees-detail-toolbar[b-arn411zm88] {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.employees-detail-title[b-arn411zm88] {
    color: var(--employees-accent-strong);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.employees-detail-subtitle[b-arn411zm88] {
    margin-top: 4px;
    color: var(--employees-muted);
    font-size: 0.82rem;
    max-width: 720px;
}

.employees-detail-summary-strip[b-arn411zm88] {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
    min-width: 0;
}

.employees-detail-summary-icon[b-arn411zm88] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(33, 76, 115, 0.10);
    color: var(--employees-accent-strong);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.employees-detail-summary-copy[b-arn411zm88] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.employees-detail-summary-name[b-arn411zm88] {
    color: var(--employees-accent-strong);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.15;
}

.employees-detail-summary-meta[b-arn411zm88] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.employees-detail-summary-meta span[b-arn411zm88] {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(133, 111, 72, 0.16);
    color: var(--employees-muted);
    font-size: 0.76rem;
    font-weight: 600;
}

.employees-company-badge[b-arn411zm88] {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(133, 111, 72, 0.16);
    color: var(--employees-muted);
    font-size: 0.76rem;
    font-weight: 600;
}

.employees-company-badge.is-default-company[b-arn411zm88] {
    background: rgba(33, 76, 115, 0.12);
    border-color: rgba(33, 76, 115, 0.35);
    color: var(--employees-accent-strong);
    font-weight: 700;
}



.employees-detail-summary-contact[b-arn411zm88] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 2px;
}

.employees-contact-item[b-arn411zm88] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px 10px 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(133, 111, 72, 0.16);
    background: rgba(255, 255, 255, 0.68);
    width: fit-content;
    max-width: 100%;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(58, 49, 37, 0.06);
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.employees-contact-item:hover[b-arn411zm88] {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(33, 76, 115, 0.28);
    box-shadow: 0 4px 12px rgba(33, 76, 115, 0.10);
}

.employees-contact-icon[b-arn411zm88] {
    flex-shrink: 0;
    font-size: 0.8rem;
    color: var(--employees-accent);
    opacity: 0.82;
}

.employees-contact-link[b-arn411zm88] {
    color: var(--employees-accent-strong);
    font-size: 0.79rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.employees-contact-link:hover[b-arn411zm88] {
    text-decoration: underline;
    color: var(--employees-accent);
}

.employees-detail-status[b-arn411zm88] {
    flex-shrink: 0;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(33, 76, 115, 0.16);
    background: rgba(33, 76, 115, 0.08);
    color: var(--employees-accent-strong);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.employees-detail-status.is-active[b-arn411zm88] {
    border-color: rgba(19, 115, 51, 0.18);
    background: rgba(19, 115, 51, 0.10);
    color: #137333;
}

.employees-detail-status.is-inactive[b-arn411zm88] {
    border-color: rgba(197, 34, 31, 0.18);
    background: rgba(197, 34, 31, 0.10);
    color: #c5221f;
}

.employees-detail-mode[b-arn411zm88] {
    flex-shrink: 0;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(33, 76, 115, 0.16);
    background: rgba(33, 76, 115, 0.08);
    color: var(--employees-accent-strong);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.employees-detail-mode.is-editing[b-arn411zm88] {
    border-color: rgba(181, 136, 56, 0.28);
    background: rgba(181, 136, 56, 0.14);
    color: #7a530f;
}

.employees-detail-empty[b-arn411zm88] {
    border-radius: 18px;
    border: 1px dashed rgba(133, 111, 72, 0.4);
    background: rgba(255, 255, 255, 0.42);
}

/* ── Prev / Next navigation pill ──────────────────────────────────────── */
.employees-detail-nav[b-arn411zm88] {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 3px;
    border-radius: 999px;
    border: 1px solid rgba(133, 111, 72, 0.22);
    background: rgba(255, 255, 255, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 4px 10px rgba(58, 49, 37, 0.08);
    backdrop-filter: blur(4px);
}

.employees-nav-btn[b-arn411zm88] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: var(--employees-accent);
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
    flex-shrink: 0;
}

.employees-nav-btn:hover:not(:disabled)[b-arn411zm88] {
    background: var(--employees-accent);
    color: #fff;
    transform: scale(1.08);
}

.employees-nav-btn:active:not(:disabled)[b-arn411zm88] {
    transform: scale(0.95);
}

.employees-nav-btn:disabled[b-arn411zm88],
.employees-nav-btn.is-disabled[b-arn411zm88] {
    opacity: 0.32;
    cursor: default;
}

.employees-nav-counter[b-arn411zm88] {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    padding: 0 10px;
    user-select: none;
    white-space: nowrap;
}

.employees-nav-pos[b-arn411zm88] {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--employees-accent-strong);
    min-width: 18px;
    text-align: right;
}

.employees-nav-sep[b-arn411zm88] {
    font-size: 0.78rem;
    color: var(--employees-line-strong);
    font-weight: 400;
}

.employees-nav-total[b-arn411zm88] {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--employees-muted);
}

.employees-nav-page[b-arn411zm88] {
    margin-left: 4px;
    padding: 1px 7px;
    border-radius: 999px;
    background: rgba(33, 76, 115, 0.10);
    border: 1px solid rgba(33, 76, 115, 0.14);
    color: var(--employees-accent);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

[b-arn411zm88] .employees-detail-tabs > .e-tab-header {
    padding: 0 6px;
    background: transparent;
    border-bottom: 1px solid rgba(133, 111, 72, 0.18);
}

[b-arn411zm88] .employees-detail-tabs > .e-tab-header .e-toolbar-item {
    margin-right: 6px;
}

[b-arn411zm88] .employees-detail-tabs > .e-tab-header .e-tab-wrap {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 12px 12px 0 0;
    border: 1px solid transparent;
    color: var(--employees-muted);
}

[b-arn411zm88] .employees-detail-tabs > .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
    border-color: rgba(33, 76, 115, 0.14);
    background: rgba(255, 255, 255, 0.84);
    color: var(--employees-accent-strong);
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.9), 0 8px 18px rgba(18, 50, 76, 0.08);
}

[b-arn411zm88] .employees-detail-tabs > .e-content {
    background: transparent;
    padding-top: 12px;
}

[b-arn411zm88] .employees-detail-tabs .e-card {
    border-radius: 18px;
    border: 1px solid var(--employees-line);
    background: linear-gradient(135deg, #ffffff 0%, #f5efe3 100%);
    box-shadow: 0 12px 24px rgba(57, 49, 37, 0.08);
}

[b-arn411zm88] .employees-detail-tabs .e-input-group,
[b-arn411zm88] .employees-detail-tabs .e-control-wrapper,
[b-arn411zm88] .employees-detail-tabs .e-ddl,
[b-arn411zm88] .employees-detail-tabs .e-ddt,
[b-arn411zm88] .employees-detail-tabs .e-numeric,
[b-arn411zm88] .employees-detail-tabs .e-datepicker {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
}

[b-arn411zm88] .employees-detail-tabs .e-input-group,
[b-arn411zm88] .employees-detail-tabs .e-control-wrapper {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

[b-arn411zm88] .employees-detail-tabs .e-float-text,
[b-arn411zm88] .employees-detail-tabs .e-input-group .e-float-text.e-label-top {
    color: var(--employees-muted);
}

@media (max-width: 1100px) {
    .employees-detail-header[b-arn411zm88] {
        flex-direction: column;
        align-items: stretch;
    }

    .employees-detail-summary-strip[b-arn411zm88] {
        align-items: flex-start;
    }

    .employees-detail-header-actions[b-arn411zm88],
    .employees-detail-toolbar[b-arn411zm88] {
        align-items: stretch;
        justify-content: flex-start;
    }

    .employees-detail-badges[b-arn411zm88] {
        justify-content: flex-start;
    }

    .employees-detail-mode[b-arn411zm88] {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    [b-arn411zm88] .employees-main-tabs > .e-content {
        padding: 12px;
    }

    .employees-grid-panel[b-arn411zm88],
    .employees-detail-shell[b-arn411zm88] {
        padding: 12px;
        border-radius: 16px;
    }

    .employees-detail-header[b-arn411zm88] {
        padding: 14px 16px;
    }

    .employees-detail-summary-strip[b-arn411zm88] {
        flex-direction: column;
        align-items: flex-start;
    }

    .employees-detail-title[b-arn411zm88] {
        font-size: 0.96rem;
    }

    .employees-detail-summary-name[b-arn411zm88] {
        font-size: 1.05rem;
    }
}
/* /Components/Shared/VersionDisplay.razor.rz.scp.css */
.version-display[b-16b7eo3t36] {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.version-info-full[b-16b7eo3t36] {
    padding: 0.5rem;
}

.version-line[b-16b7eo3t36] {
    margin-bottom: 0.25rem;
    color: var(--rz-text-color, #333);
}

.version-line:last-child[b-16b7eo3t36] {
    margin-bottom: 0;
}

.version-line small[b-16b7eo3t36] {
    font-size: 0.875rem;
    color: var(--rz-text-secondary-color, #666);
}

.version-info-compact[b-16b7eo3t36] {
    font-size: 0.875rem;
    color: var(--rz-text-secondary-color, #666);
}

/* Footer version styling */
.version-display.footer-version[b-16b7eo3t36] {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid var(--rz-border-color, #ddd);
    margin-top: auto;
}

/* Sidebar version styling */
.version-display.sidebar-version[b-16b7eo3t36] {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: var(--rz-text-tertiary-color, #999);
    border-top: 1px solid var(--rz-border-color, #ddd);
}

/* About dialog version styling */
.version-display.about-version[b-16b7eo3t36] {
    text-align: center;
    padding: 1.5rem;
}
