@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';
@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* /Components/Layout/AdminLayout.razor.rz.scp.css */
/* Admin Layout Styles */
.admin-layout[b-nlb7f7ji8b] {
    display: flex;
    min-height: 100vh;
    background: #f1f5f9;
    width: 100%;
    overflow-x: hidden; /* Prevents horizontal scroll on the main layout */
}

/* Admin Sidebar */
.admin-sidebar[b-nlb7f7ji8b] {
    width: 260px;
    background: linear-gradient(180deg, #0f172a 0%, #519ba8 100%);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    transition: transform 0.3s ease, width 0.3s ease;
}

.admin-sidebar.collapsed[b-nlb7f7ji8b] {
    transform: translateX(-100%);
}

.sidebar-header[b-nlb7f7ji8b] {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-brand[b-nlb7f7ji8b] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
}

.admin-brand .brand-icon[b-nlb7f7ji8b] {
    font-size: 1.5rem;
}

.admin-brand .brand-text[b-nlb7f7ji8b] {
    font-size: 1.25rem;
    font-weight: 700;
}

.admin-badge[b-nlb7f7ji8b] {
    background: var(--primary-color) !important;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.sidebar-nav[b-nlb7f7ji8b] {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.sidebar-footer[b-nlb7f7ji8b] {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.back-to-site[b-nlb7f7ji8b] {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.back-to-site:hover[b-nlb7f7ji8b] {
    color: white;
}

/* Admin Main Area */
.admin-main[b-nlb7f7ji8b] {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
    transition: margin-left 0.3s ease;
    min-width: 0; /* Prevents flex item from overflowing */
    overflow: hidden;
}

.admin-sidebar.collapsed + .admin-main[b-nlb7f7ji8b] {
    margin-left: 0;
}

/* Admin Top Bar */
.admin-topbar[b-nlb7f7ji8b] {
    background: white;
    height: 64px;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 50;
}

.sidebar-toggle[b-nlb7f7ji8b] {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.sidebar-toggle:hover[b-nlb7f7ji8b] {
    background: #f1f5f9;
}

/* Centered logo shown only on mobile */
.topbar-brand-mobile[b-nlb7f7ji8b] {
    display: none;
}

.topbar-brand-mobile img[b-nlb7f7ji8b] {
    height: 32px;
    width: auto;
    display: block;
}

.topbar-search[b-nlb7f7ji8b] {
    flex: 1;
    max-width: 400px;
}

.search-input[b-nlb7f7ji8b] {
    width: 100%;
    padding: 0.625rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #f8fafc;
    transition: all 0.2s;
}

.search-input:focus[b-nlb7f7ji8b] {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.topbar-actions[b-nlb7f7ji8b] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.topbar-btn[b-nlb7f7ji8b] {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    position: relative;
    transition: background 0.2s;
}

.topbar-btn:hover[b-nlb7f7ji8b] {
    background: #f1f5f9;
}

.notification-badge[b-nlb7f7ji8b] {
    position: absolute;
    top: 0;
    right: 0;
    background: #ef4444;
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
}

.user-menu[b-nlb7f7ji8b] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.user-menu:hover[b-nlb7f7ji8b] {
    background: #f1f5f9;
}

.user-avatar[b-nlb7f7ji8b] {
    font-size: 1.5rem;
}

.user-name[b-nlb7f7ji8b] {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-logout[b-nlb7f7ji8b] {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-logout:hover[b-nlb7f7ji8b] {
    background: #fef2f2;
}

/* Admin Content */
.admin-content[b-nlb7f7ji8b] {
    flex: 1;
    padding: 1.5rem;
    min-width: 0; /* Prevents flex item from overflowing */
    overflow: visible;
}

.content-wrapper[b-nlb7f7ji8b] {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    min-width: 0; /* Allows content to shrink */
}

/* Grid overflow handling - adds horizontal scroll when content overflows */
.content-wrapper :deep(.table-responsive)[b-nlb7f7ji8b],
.content-wrapper :deep(.grid-container)[b-nlb7f7ji8b],
.content-wrapper :deep(table)[b-nlb7f7ji8b] {
    overflow-x: auto;
    max-width: 100%;
}

/* Ensure grids and tables get horizontal scroll */
.content-wrapper :deep(.rz-data-grid)[b-nlb7f7ji8b],
.content-wrapper :deep(.rz-datatable)[b-nlb7f7ji8b] {
    overflow-x: auto;
    max-width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .admin-sidebar[b-nlb7f7ji8b] {
        transform: translateX(-100%);
    }

    .admin-sidebar.collapsed[b-nlb7f7ji8b] {
        transform: translateX(0);
    }

    .admin-main[b-nlb7f7ji8b] {
        margin-left: 0;
    }
}

@media (max-width: 992px) {
    .topbar-brand-mobile[b-nlb7f7ji8b] {
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 768px) {
    .topbar-search[b-nlb7f7ji8b] {
        display: none;
    }

    .user-name[b-nlb7f7ji8b] {
        display: none;
    }
}

/* Error UI */
#blazor-error-ui[b-nlb7f7ji8b] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-nlb7f7ji8b] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/AdminNavMenu.razor.rz.scp.css */
.nav-section[b-rn2mckfbev] {
    margin-bottom: 0.5rem;
}

.nav-section-title[b-rn2mckfbev] {
    display: block;
    padding: 0.75rem 1.5rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
}

[b-rn2mckfbev] .admin-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

[b-rn2mckfbev] .admin-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

[b-rn2mckfbev] .admin-nav-link.active {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-left-color: #3b82f6;
}

[b-rn2mckfbev] .nav-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

[b-rn2mckfbev] .nav-text {
    flex: 1;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Main Layout Styles */
.main-layout[b-4p03wb9dc3] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Top Header */
.top-header[b-4p03wb9dc3] {
    background: linear-gradient(180deg, #0f172a 0%, #519ba8 100%);
    color: white;
    padding: 0.75rem 0;
}

.header-container[b-4p03wb9dc3] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand[b-4p03wb9dc3] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-link[b-4p03wb9dc3] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
}

.brand-icon[b-4p03wb9dc3] {
    font-size: 1.75rem;
}

.brand-text[b-4p03wb9dc3] {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.brand-tagline[b-4p03wb9dc3] {
    font-size: 0.85rem;
    opacity: 0.85;
    border-left: 1px solid rgba(255,255,255,0.3);
    padding-left: 1rem;
}

.header-actions[b-4p03wb9dc3] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-link[b-4p03wb9dc3] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-link:hover[b-4p03wb9dc3] {
    opacity: 0.9;
}

.btn-login[b-4p03wb9dc3] {
    background: white;
    color: #1a365d;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-login:hover[b-4p03wb9dc3] {
    background: #f0f4f8;
    transform: translateY(-1px);
}

/* User Info (authenticated) */
.user-info[b-4p03wb9dc3] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
}

.user-avatar[b-4p03wb9dc3] {
    font-size: 1.25rem;
}

.user-name[b-4p03wb9dc3] {
    font-weight: 500;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-logout[b-4p03wb9dc3] {
    background: transparent;
    color: white;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-logout:hover[b-4p03wb9dc3] {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* Main Navigation */
.main-nav[b-4p03wb9dc3] {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container[b-4p03wb9dc3] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-toggle[b-4p03wb9dc3] {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Main Content */
.main-content[b-4p03wb9dc3] {
    flex: 1;
    background: #f8fafc;
}

/* Footer */
.main-footer[b-4p03wb9dc3] {
    background: linear-gradient(180deg, #0f172a 0%, #519ba8 100%);
    color: white;
    padding: 3rem 0 0;
}

.footer-container[b-4p03wb9dc3] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section h4[b-4p03wb9dc3] {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #90cdf4;
}

.footer-section p[b-4p03wb9dc3] {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section ul[b-4p03wb9dc3] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li[b-4p03wb9dc3] {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-section ul li a[b-4p03wb9dc3] {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-section ul li a:hover[b-4p03wb9dc3] {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom[b-4p03wb9dc3] {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container[b-4p03wb9dc3] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container[b-4p03wb9dc3] {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .brand[b-4p03wb9dc3] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .brand-tagline[b-4p03wb9dc3] {
        border-left: none;
        padding-left: 0;
    }

    .header-actions[b-4p03wb9dc3] {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1rem;
        width: 100%;
    }

    .mobile-menu-toggle[b-4p03wb9dc3] {
        display: block;
    }

    .footer-container[b-4p03wb9dc3] {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .top-header[b-4p03wb9dc3] {
        padding: 0.75rem 0;
    }

    .header-container[b-4p03wb9dc3] {
        padding: 0 1rem;
    }

    .brand-tagline[b-4p03wb9dc3] {
        font-size: 0.8rem;
    }

    .header-actions[b-4p03wb9dc3] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .contact-link[b-4p03wb9dc3] {
        font-size: 0.85rem;
    }

    .btn-login[b-4p03wb9dc3],
    .btn-logout[b-4p03wb9dc3] {
        display: block;
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 0.6rem 1.25rem;
    }

    .user-info[b-4p03wb9dc3] {
        justify-content: center;
        width: 100%;
    }

    .user-name[b-4p03wb9dc3] {
        max-width: 200px;
    }

    .nav-container[b-4p03wb9dc3] {
        padding: 0 1rem;
    }
}

/* Error UI */
#blazor-error-ui[b-4p03wb9dc3] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-4p03wb9dc3] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/MainNavMenu.razor.rz.scp.css */
.main-nav-links[b-91vrlrmfjc] {
    display: flex;
    gap: 0.25rem;
}

.main-nav-links[b-91vrlrmfjc]  .nav-link {
    padding: 1rem 1.25rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
}

.main-nav-links[b-91vrlrmfjc]  .nav-link:hover {
    color: #1a365d;
    background: #f8fafc;
}

.main-nav-links[b-91vrlrmfjc]  .nav-link.active {
    color: #1a365d;
    border-bottom-color: #2d5a87;
    background: #f0f7ff;
}

@media (max-width: 768px) {
    .main-nav-links[b-91vrlrmfjc] {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .main-nav-links.show[b-91vrlrmfjc] {
        display: flex;
    }

    .main-nav-links[b-91vrlrmfjc]  .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid #e5e7eb;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-unpfsfastp],
.components-reconnect-repeated-attempt-visible[b-unpfsfastp],
.components-reconnect-failed-visible[b-unpfsfastp],
.components-pause-visible[b-unpfsfastp],
.components-resume-failed-visible[b-unpfsfastp],
.components-rejoining-animation[b-unpfsfastp] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-unpfsfastp],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-unpfsfastp],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-unpfsfastp],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-unpfsfastp],
#components-reconnect-modal.components-reconnect-retrying[b-unpfsfastp],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-unpfsfastp],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-unpfsfastp],
#components-reconnect-modal.components-reconnect-failed[b-unpfsfastp],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-unpfsfastp] {
    display: block;
}


#components-reconnect-modal[b-unpfsfastp] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-unpfsfastp 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-unpfsfastp 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-unpfsfastp 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-unpfsfastp]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-unpfsfastp 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-unpfsfastp {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-unpfsfastp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-unpfsfastp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-unpfsfastp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-unpfsfastp] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-unpfsfastp] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-unpfsfastp] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-unpfsfastp] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-unpfsfastp] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-unpfsfastp] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-unpfsfastp 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-unpfsfastp] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-unpfsfastp {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/About.razor.rz.scp.css */
/* Hero */
.about-hero[b-uuu371fdcc] {
    background: linear-gradient(180deg, #0f172a 0%, #519ba8 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.about-hero-content[b-uuu371fdcc] {
    max-width: 700px;
    margin: 0 auto;
}

.about-hero h1[b-uuu371fdcc] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero p[b-uuu371fdcc] {
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.6;
}

.about-container[b-uuu371fdcc] {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title[b-uuu371fdcc] {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 2.5rem;
}

/* Intro */
.about-intro[b-uuu371fdcc] {
    padding: 5rem 2rem;
    background: white;
}

.about-intro-grid[b-uuu371fdcc] {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: start;
}

.about-intro-text h2[b-uuu371fdcc] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1.25rem;
}

.about-intro-text p[b-uuu371fdcc] {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-highlight-card[b-uuu371fdcc] {
    background: linear-gradient(180deg, #0f172a 0%, #519ba8 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
}

.about-highlight-card h3[b-uuu371fdcc] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-highlight-card p[b-uuu371fdcc] {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0;
}

/* Values */
.about-values[b-uuu371fdcc] {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.values-grid[b-uuu371fdcc] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card[b-uuu371fdcc] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover[b-uuu371fdcc] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.value-icon[b-uuu371fdcc] {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.value-card h3[b-uuu371fdcc] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.value-card p[b-uuu371fdcc] {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Locations */
.about-locations[b-uuu371fdcc] {
    padding: 5rem 2rem;
    background: white;
}

.locations-grid[b-uuu371fdcc] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.location-card[b-uuu371fdcc] {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.location-icon[b-uuu371fdcc] {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.location-card h3[b-uuu371fdcc] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.location-card p[b-uuu371fdcc] {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* CTA */
.about-cta[b-uuu371fdcc] {
    background: linear-gradient(180deg, #0f172a 0%, #519ba8 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.about-cta-container[b-uuu371fdcc] {
    max-width: 600px;
    margin: 0 auto;
}

.about-cta h2[b-uuu371fdcc] {
    color: white;
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta p[b-uuu371fdcc] {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-cta-buttons[b-uuu371fdcc] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary[b-uuu371fdcc] {
    display: inline-block;
    background: white;
    color: #1a365d;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-cta-primary:hover[b-uuu371fdcc] {
    background: #f0f4f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-cta-secondary[b-uuu371fdcc] {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.2s ease;
}

.btn-cta-secondary:hover[b-uuu371fdcc] {
    background: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .values-grid[b-uuu371fdcc] {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-intro-grid[b-uuu371fdcc] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero h1[b-uuu371fdcc] {
        font-size: 2rem;
    }

    .values-grid[b-uuu371fdcc],
    .locations-grid[b-uuu371fdcc] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Admin/Assessment/_AssessmentDetailsDialog.razor.rz.scp.css */
.highlight-amount[b-g1v29oeyrx] {
    animation: pulse-highlight-b-g1v29oeyrx 1.5s ease-in-out;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e9 100%);
}

@keyframes pulse-highlight-b-g1v29oeyrx {
    0% {
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(25, 135, 84, 0.2);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
        transform: scale(1);
    }
}
/* /Components/Pages/Admin/Claimant/_ClaimantUpsertForm.razor.rz.scp.css */
/* Header tabova (dugmad) mora ostati vidljiv dok se skroluje sadržaj taba. "position: sticky"
   na traci sa dugmadima se pokazalo nepouzdano unutar modal-body-ja koji već ima svoj
   overflow-y: auto (dvostruki skrol kontekst ga "guta"). Umesto toga, sam sadržaj taba
   (BlazorBootstrap "tab-content" div) dobija OGRANIČENU visinu i SOPSTVENI skrol - traka sa
   dugmadima (koja mu prethodi kao sibling, van skrolujuće zone) time nikad ne napušta ekran. */
[b-toprareeuw] .tab-content {
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
}
/* /Components/Pages/Admin/ClaimCase/_AssessmentUpsertForm.razor.rz.scp.css */
.highlight-amount-input[b-scahonb1yy] {
    animation: pulse-highlight-input-b-scahonb1yy 1.5s ease-in-out;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e9 100%);
}

@keyframes pulse-highlight-input-b-scahonb1yy {
    0% {
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(25, 135, 84, 0.2);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
        transform: scale(1);
    }
}

.highlight-amount-input .form-control[b-scahonb1yy] {
    font-size: 1.25rem;
    font-weight: 600;
}
/* /Components/Pages/Admin/ClaimCase/_Vehicle3DViewer.razor.rz.scp.css */
/* Responsive height for the 3D canvas.
   The inline height set from the Height parameter is the desktop size;
   on smaller screens we cap it so the viewer doesn't dominate the page. */
@media (max-width: 767.98px) {
    .vehicle-3d-canvas[b-6zwpx9ng4a] {
        height: 300px !important;
    }
}

@media (max-width: 400px) {
    .vehicle-3d-canvas[b-6zwpx9ng4a] {
        height: 260px !important;
    }
}

/* Full-screen expanded state.
   The wrapper covers the viewport and the canvas grows to fill it;
   the JS viewer's ResizeObserver updates the renderer automatically. */
.vehicle-3d-expanded[b-6zwpx9ng4a] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    margin: 0 !important;
    padding: 1rem;
    background: #fff;
    overflow: auto;
}

    .vehicle-3d-expanded .vehicle-3d-canvas[b-6zwpx9ng4a] {
        height: calc(100vh - 12rem) !important;
    }
/* /Components/Pages/Admin/ClaimEvent/_ClaimEventUpsertForm.razor.rz.scp.css */
/* Header tabova (dugmad) mora ostati vidljiv dok se skroluje sadržaj taba. "position: sticky"
   na traci sa dugmadima se pokazalo nepouzdano unutar modal-body-ja koji već ima svoj
   overflow-y: auto (dvostruki skrol kontekst ga "guta"). Umesto toga, sam sadržaj taba
   (BlazorBootstrap "tab-content" div) dobija OGRANIČENU visinu i SOPSTVENI skrol - traka sa
   dugmadima (koja mu prethodi kao sibling, van skrolujuće zone) time nikad ne napušta ekran. */
[b-ae0tg2rbrg] .tab-content {
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
}
/* /Components/Pages/Admin/ClaimRequest/_ClaimRequestUpsertForm.razor.rz.scp.css */
/* Header tabova (dugmad) mora ostati vidljiv dok se skroluje sadržaj taba. "position: sticky"
   na traci sa dugmadima se pokazalo nepouzdano unutar modal-body-ja koji već ima svoj
   overflow-y: auto (dvostruki skrol kontekst ga "guta"). Umesto toga, sam sadržaj taba
   (BlazorBootstrap "tab-content" div) dobija OGRANIČENU visinu i SOPSTVENI skrol - traka sa
   dugmadima (koja mu prethodi kao sibling, van skrolujuće zone) time nikad ne napušta ekran. */
[b-h2thdobbod] .tab-content {
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
}
/* /Components/Pages/Admin/Dashboard.razor.rz.scp.css */
/* Dashboard Header */
.dashboard-header[b-tdln9arkj7] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.header-content h1[b-tdln9arkj7] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.header-subtitle[b-tdln9arkj7] {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.header-actions[b-tdln9arkj7] {
    display: flex;
    gap: 0.75rem;
}

.btn-outline[b-tdln9arkj7] {
    background: white;
    border: 1px solid #e2e8f0;
    color: #374151;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover[b-tdln9arkj7] {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.btn-primary[b-tdln9arkj7] {
    background: #3b82f6;
    border: none;
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover[b-tdln9arkj7] {
    background: #2563eb;
}

/* Stats Grid */
.stats-grid[b-tdln9arkj7] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-tdln9arkj7] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.stat-icon[b-tdln9arkj7] {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.stat-icon.partners[b-tdln9arkj7] {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.stat-icon.vehicles[b-tdln9arkj7] {
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
}

.stat-icon.claimants[b-tdln9arkj7] {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.stat-icon.claimcases[b-tdln9arkj7] {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.stat-icon.assessments[b-tdln9arkj7] {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
}

.stat-info[b-tdln9arkj7] {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.stat-value[b-tdln9arkj7] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
}

.stat-label[b-tdln9arkj7] {
    font-size: 0.85rem;
    color: #64748b;
}

.stat-change[b-tdln9arkj7] {
    font-size: 0.8rem;
    font-weight: 500;
}

.stat-change.positive[b-tdln9arkj7] {
    color: #059669;
}

.stat-change.negative[b-tdln9arkj7] {
    color: #dc2626;
}

/* Dashboard Grid */
.dashboard-grid[b-tdln9arkj7] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.dashboard-card[b-tdln9arkj7] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.card-header[b-tdln9arkj7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.card-header h2[b-tdln9arkj7] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.view-all[b-tdln9arkj7] {
    font-size: 0.85rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.view-all:hover[b-tdln9arkj7] {
    text-decoration: underline;
}

/* Claims List */
.claims-list[b-tdln9arkj7] {
    display: flex;
    flex-direction: column;
}

.claim-item[b-tdln9arkj7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.claim-item:last-child[b-tdln9arkj7] {
    border-bottom: none;
}

.claim-info[b-tdln9arkj7] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.claim-id[b-tdln9arkj7] {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}

.claim-title[b-tdln9arkj7] {
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 500;
}

.claim-date[b-tdln9arkj7] {
    font-size: 0.8rem;
    color: #94a3b8;
}

.claim-status[b-tdln9arkj7] {
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.claim-status.pending[b-tdln9arkj7] {
    background: #fef3c7;
    color: #b45309;
}

.claim-status.in-review[b-tdln9arkj7] {
    background: #dbeafe;
    color: #1d4ed8;
}

.claim-status.approved[b-tdln9arkj7] {
    background: #d1fae5;
    color: #047857;
}

.claim-status.rejected[b-tdln9arkj7] {
    background: #fee2e2;
    color: #dc2626;
}

/* Assessments */
.assessment-list[b-tdln9arkj7] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.assessment-item[b-tdln9arkj7] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.assessment-date[b-tdln9arkj7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #3b82f6;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    min-width: 50px;
}

.assessment-date .day[b-tdln9arkj7] {
    font-size: 1.25rem;
    font-weight: 700;
}

.assessment-date .month[b-tdln9arkj7] {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.assessment-info[b-tdln9arkj7] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.assessment-title[b-tdln9arkj7] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}

.assessment-location[b-tdln9arkj7],
.assessment-assessor[b-tdln9arkj7] {
    font-size: 0.8rem;
    color: #64748b;
}

.assessment-time[b-tdln9arkj7] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

/* Quick Actions */
.quick-actions[b-tdln9arkj7] {
    grid-column: 1 / -1;
}

.actions-grid[b-tdln9arkj7] {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.action-btn[b-tdln9arkj7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.action-btn:hover[b-tdln9arkj7] {
    background: white;
    border-color: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

.action-btn i[b-tdln9arkj7] {
    font-size: 1.75rem;
    color: #6366f1;
}

.action-text[b-tdln9arkj7] {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    text-align: center;
}

/* Section wrapper — lets Brze akcije be reordered on mobile */
.dashboard-sections[b-tdln9arkj7] {
    display: flex;
    flex-direction: column;
}

/* Mobile card list (shown < lg via .d-lg-none) */
.dm-list[b-tdln9arkj7] {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.dm-card[b-tdln9arkj7] {
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 10px;
    padding: 0.75rem 0.875rem;
}

.dm-card-top[b-tdln9arkj7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.dm-primary[b-tdln9arkj7] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dm-amount[b-tdln9arkj7] {
    font-size: 0.9rem;
    font-weight: 700;
    color: #059669;
    white-space: nowrap;
    flex-shrink: 0;
}

.dm-date[b-tdln9arkj7] {
    font-size: 0.75rem;
    color: #94a3b8;
    white-space: nowrap;
    flex-shrink: 0;
}

.dm-card-meta[b-tdln9arkj7] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem 1rem;
}

.dm-card-meta span[b-tdln9arkj7] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    color: #64748b;
    min-width: 0;
}

.dm-card-meta i[b-tdln9arkj7] {
    color: #94a3b8;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.dm-empty[b-tdln9arkj7] {
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
    padding: 1.5rem 0;
}

/* Responsive */
@media (max-width: 1400px) {
    .stats-grid[b-tdln9arkj7] {
        grid-template-columns: repeat(3, 1fr);
    }

    .actions-grid[b-tdln9arkj7] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .stats-grid[b-tdln9arkj7] {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-grid[b-tdln9arkj7] {
        grid-template-columns: 1fr;
    }

    .actions-grid[b-tdln9arkj7] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-header[b-tdln9arkj7] {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

    .header-content h1[b-tdln9arkj7] {
        font-size: 1.4rem;
    }

    .header-subtitle[b-tdln9arkj7] {
        font-size: 0.875rem;
    }

    /* Move Brze akcije to the top on mobile */
    .quick-actions[b-tdln9arkj7] {
        order: -1;
        margin-top: 0 !important;
        margin-bottom: 1.25rem;
    }

    .stats-grid[b-tdln9arkj7] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    /* Compact horizontal stat cards on mobile */
    .stat-card[b-tdln9arkj7] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.875rem;
    }

    .stat-icon[b-tdln9arkj7] {
        width: 40px;
        height: 40px;
        font-size: 1.05rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .stat-info[b-tdln9arkj7] {
        margin-bottom: 0;
        min-width: 0;
    }

    .stat-value[b-tdln9arkj7] {
        font-size: 1.35rem;
        line-height: 1.15;
    }

    .dashboard-grid[b-tdln9arkj7] {
        gap: 1rem;
    }

    .dashboard-card[b-tdln9arkj7] {
        padding: 1rem;
    }

    .card-header[b-tdln9arkj7] {
        margin-bottom: 1rem;
    }

    .card-header h2[b-tdln9arkj7] {
        font-size: 1rem;
    }

    .actions-grid[b-tdln9arkj7] {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .action-btn[b-tdln9arkj7] {
        padding: 1rem 0.5rem;
        gap: 0.5rem;
    }

    .action-btn i[b-tdln9arkj7] {
        font-size: 1.4rem;
    }

    .action-text[b-tdln9arkj7] {
        font-size: 0.75rem;
    }
}

@media (max-width: 380px) {
    .stats-grid[b-tdln9arkj7] {
        grid-template-columns: 1fr;
    }

    .actions-grid[b-tdln9arkj7] {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* /Components/Pages/Admin/Lawsuit/_HearingsCalendar.razor.rz.scp.css */
.hc-wrapper[b-fzrnkauw6j]  .hc-card {
    padding: 12px;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-toolbar {
    margin-bottom: 10px;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-month-title {
    color: #257180;
    font-weight: 600;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-toolbar-spacer {
    width: 1px;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-grid {
    border: 1px solid #dee2e6;
    border-top: none;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.hc-wrapper[b-fzrnkauw6j]  .hc-header-row {
    border-top: 1px solid #dee2e6;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-header-cell {
    text-align: center;
    font-weight: 600;
    color: #257180;
    padding: 8px 4px;
    text-transform: uppercase;
    font-size: 13px;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-day-cell {
    min-height: 110px;
    max-height: 160px;
    overflow-y: auto;
    overflow-x: hidden;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 4px;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-selectable {
    cursor: pointer;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-selected {
    outline: 2px solid #e8622c;
    outline-offset: -2px;
    background-color: #fff4ee;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-day-cell:nth-child(7n) {
    border-right: none;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-outside {
    background-color: #fafafa;
    color: #bbb;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-outside .hc-day-number {
    color: #bbb;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-today {
    background-color: #eef7f8;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-day-number {
    font-weight: 600;
    color: #257180;
    font-size: 13px;
    margin-bottom: 4px;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-day-events {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-event {
    background-color: #6f9fc2;
    color: #fff;
    font-size: 11px;
    line-height: 1.3;
    padding: 3px 5px;
    border-radius: 3px;
    cursor: pointer;
    word-break: break-word;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-event:hover {
    background-color: #517a9a;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-task-event {
    background-color: #e8622c;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-task-event:hover {
    background-color: #c94f20;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-task-finished {
    background-color: #8fae8f;
    text-decoration: line-through;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-lawyers-card {
    padding: 14px;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-lawyers-title {
    color: #e8622c;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-lawyers-list .form-check {
    margin-bottom: 8px;
}

.hc-wrapper[b-fzrnkauw6j]  .hc-lawyers-list .form-check-label {
    color: #257180;
    font-weight: 600;
}
/* /Components/Pages/Admin/Lawsuit/_LawsuitUpsertForm.razor.rz.scp.css */
/* Header tabova (dugmad) mora ostati vidljiv dok se skroluje sadržaj taba. "position: sticky"
   na traci sa dugmadima se pokazalo nepouzdano unutar modal-body-ja koji već ima svoj
   overflow-y: auto (dvostruki skrol kontekst ga "guta"). Umesto toga, sam sadržaj taba
   (BlazorBootstrap "tab-content" div) dobija OGRANIČENU visinu i SOPSTVENI skrol - traka sa
   dugmadima (koja mu prethodi kao sibling, van skrolujuće zone) time nikad ne napušta ekran. */
[b-acxodoaz42] .tab-content {
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
}
/* /Components/Pages/Admin/Role/AdminRolesSearch.razor.rz.scp.css */
/* Admin Roles Search Page Styles */

/* Page Header */
:deep(.h2)[b-7wi2ob61o0] {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0;
}

/* Action Buttons Row */
.row.mb-4[b-7wi2ob61o0] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Primary Button */
:deep(.btn-primary)[b-7wi2ob61o0] {
    background-color: #3b82f6;
    border-color: #3b82f6;
    border-radius: 8px;
    padding: 0.625rem 1.25rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

:deep(.btn-primary:hover)[b-7wi2ob61o0] {
    background-color: #2563eb;
    border-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

/* Grid Styling */
:deep(.table)[b-7wi2ob61o0] {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

:deep(.table thead th)[b-7wi2ob61o0] {
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

:deep(.table tbody td)[b-7wi2ob61o0] {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}

:deep(.table tbody tr:hover)[b-7wi2ob61o0] {
    background-color: #f8fafc;
}

:deep(.table tbody td span)[b-7wi2ob61o0] {
    font-size: 0.9rem !important;
}

/* Badge Styling */
:deep(.badge)[b-7wi2ob61o0] {
    font-weight: 500;
    padding: 0.375rem 0.625rem;
    border-radius: 6px;
    font-size: 0.75rem;
}

:deep(.badge.bg-success)[b-7wi2ob61o0] {
    background-color: #22c55e !important;
}

:deep(.badge.bg-primary)[b-7wi2ob61o0] {
    background-color: #3b82f6 !important;
}

:deep(.badge.bg-info)[b-7wi2ob61o0] {
    background-color: #06b6d4 !important;
}

/* Action Buttons in Grid */
:deep(.btn-secondary)[b-7wi2ob61o0] {
    background-color: #64748b;
    border-color: #64748b;
    font-size: 0.85rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

:deep(.btn-secondary:hover)[b-7wi2ob61o0] {
    background-color: #475569;
    border-color: #475569;
}

:deep(.btn-danger)[b-7wi2ob61o0] {
    background-color: #ef4444;
    border-color: #ef4444;
    font-size: 0.85rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

:deep(.btn-danger:hover)[b-7wi2ob61o0] {
    background-color: #dc2626;
    border-color: #dc2626;
}

/* Modal Styling */
:deep(.modal-content)[b-7wi2ob61o0] {
    border-radius: 12px;
    border: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

:deep(.modal-header)[b-7wi2ob61o0] {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 12px 12px 0 0;
    padding: 1rem 1.5rem;
}

:deep(.modal-title)[b-7wi2ob61o0] {
    font-weight: 600;
    color: #1e293b;
}

:deep(.modal-body)[b-7wi2ob61o0] {
    padding: 1.5rem;
}

:deep(.modal-footer)[b-7wi2ob61o0] {
    border-top: 1px solid #e2e8f0;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-radius: 0 0 12px 12px;
}

/* Form Controls */
.form-label[b-7wi2ob61o0] {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-control[b-7wi2ob61o0] {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 0.625rem 1rem;
    transition: all 0.2s ease;
}

.form-control:focus[b-7wi2ob61o0] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control[b-7wi2ob61o0]::placeholder {
    color: #9ca3af;
}

textarea.form-control[b-7wi2ob61o0] {
    resize: vertical;
    min-height: 80px;
}

/* Validation */
:deep(.validation-message)[b-7wi2ob61o0] {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

:deep(.validation-summary-errors)[b-7wi2ob61o0] {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

/* Pagination */
:deep(.pagination)[b-7wi2ob61o0] {
    margin-top: 1rem;
}

:deep(.page-link)[b-7wi2ob61o0] {
    border-radius: 6px;
    margin: 0 2px;
    color: #3b82f6;
}

:deep(.page-item.active .page-link)[b-7wi2ob61o0] {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

/* Breadcrumb styling */
:deep(.breadcrumb)[b-7wi2ob61o0] {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

:deep(.breadcrumb-item a)[b-7wi2ob61o0] {
    color: #3b82f6;
    text-decoration: none;
}

:deep(.breadcrumb-item.active)[b-7wi2ob61o0] {
    color: #64748b;
}

/* Spinner */
.spinner-border-sm[b-7wi2ob61o0] {
    width: 1rem;
    height: 1rem;
}

/* Text muted */
.text-muted[b-7wi2ob61o0] {
    color: #6b7280 !important;
}
/* /Components/Pages/Admin/Shared/SearchBox.razor.rz.scp.css */
.search-wrapper[b-e0c3zfaua3] {
    max-width: 600px;
    margin: 0 auto;
}

.search-box[b-e0c3zfaua3] {
    position: relative;
    background: white;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .search-box:focus-within[b-e0c3zfaua3] {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

.search-input[b-e0c3zfaua3] {
    border: 2px solid #eee;
    border-radius: 30px;
    padding: 15px 25px;
    padding-right: 50px;
    width: 100%;
    transition: all 0.3s ease;
}

    .search-input:focus[b-e0c3zfaua3] {
        border-color: #007bff;
        box-shadow: none;
    }

.search-icon[b-e0c3zfaua3] {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    transition: all 0.3s ease;
}

.clear-icon[b-e0c3zfaua3] {
    position: absolute;
    right: 41px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    transition: all 0.3s ease;
}
/* /Components/Pages/Admin/Shared/_FilterBubble.razor.rz.scp.css */
f.search-res.isLoading[b-j4fbgg8utm], .search-res.postLoadInstrumentSections[b-j4fbgg8utm] {
    position: relative;
    min-height: 700px
}

.search-res__wrap[b-j4fbgg8utm] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

    .search-res__wrap > div[b-j4fbgg8utm] {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }

@media (min-width: 768px) {
    .search-res__wrap > div[b-j4fbgg8utm] {
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%
    }
}

@media (min-width: 768px) {
    .search-res__wrap > div.full-width[b-j4fbgg8utm] {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
}

.search-res .form-control[b-j4fbgg8utm] {
    border-radius: 0;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent
}

.search-res .custom-control[b-j4fbgg8utm] {
    position: relative;
    background-color: #fff;
    height: 36px;
    border: 1px solid #f4f4f4;
    border-radius: 18px
}

    .search-res .custom-control[b-j4fbgg8utm]:after, .search-res .custom-control[b-j4fbgg8utm]:before {
        display: block;
        content: "";
        position: absolute
    }

    .search-res .custom-control[b-j4fbgg8utm]:after {
        right: 0;
        top: 0;
        width: 34px;
        height: 34px;
        background-color: #e82076;
        z-index: 11;
        border-radius: 50%
    }

    .search-res .custom-control[b-j4fbgg8utm]:before {
        width: 8px;
        height: 8px;
        border-bottom: 2px solid #fff;
        border-right: 2px solid #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        right: 12px;
        top: 12px;
        z-index: 12
    }

    .search-res .custom-control select[b-j4fbgg8utm] {
        padding-right: 40px;
        z-index: 13;
        position: relative;
        background-color: transparent
    }

.search-res .separator[b-j4fbgg8utm] {
    border-bottom: 1px solid #eee;
    margin: 30px 0;
    position: relative
}

    .search-res .separator[b-j4fbgg8utm]:after {
        display: block;
        content: "";
        position: absolute;
        left: 10%;
        right: 10%;
        top: 0;
        border-bottom: 1px solid #e0e0e0
    }

.search-res__action[b-j4fbgg8utm] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 0px solid #eee
}

@media (max-width: 1024px) {
    .search-res__action[b-j4fbgg8utm] {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 0
    }
}

.search-res__action .custom-control[b-j4fbgg8utm] {
    display: inline-block
}

    .search-res__action .custom-control[b-j4fbgg8utm]:after {
        background-color: #fff
    }

    .search-res__action .custom-control[b-j4fbgg8utm]:before {
        border-bottom: 2px solid #e82076;
        border-right: 2px solid #e82076
    }

    .search-res__action .custom-control .form-control[b-j4fbgg8utm] {
        font-weight: 400
    }

.search-res__action label[b-j4fbgg8utm] {
    margin: 0 10px 0 0;
    font-weight: 300
}

.search-res__action .custom-control.score-list-results[b-j4fbgg8utm] {
    width: 135px;
    border: none
}

    .search-res__action .custom-control.score-list-results[b-j4fbgg8utm]:before {
        border-bottom: 2px solid #9b9b9b;
        border-right: 2px solid #9b9b9b
    }

    .search-res__action .custom-control.score-list-results #searchResOrder[b-j4fbgg8utm] {
        padding-right: 30px
    }

.search-res__action-btns[b-j4fbgg8utm] {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

@media (max-width: 1024px) {
    .search-res__action-btns[b-j4fbgg8utm] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 16px
    }
}

.search-res__order[b-j4fbgg8utm] {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

    .search-res__order label[b-j4fbgg8utm] {
        margin: 0
    }

.search-res__bubbles[b-j4fbgg8utm] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    list-style-type: none;
    margin: 0;
    padding: 0
}

@media (max-width: 1024px) {
    .search-res__bubbles[b-j4fbgg8utm] {
        margin-bottom: 32px
    }
}

.search-res__bubbles li[b-j4fbgg8utm] {
    position: relative;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    padding-left: 12px;
    padding-right: 28px;
    background-color: rgba(227,13,128,.051);
    color: #e82076;
    font-weight: 400;
    height: 32px;
    line-height: 32px;
    border-radius: 100vh
}

.search-res__quant[b-j4fbgg8utm] {
    margin-top: 20px
}

@media (min-width: 768px) {
    .search-res__quant[b-j4fbgg8utm] {
        margin-top: 0;
        padding-left: 45px
    }
}

.search-res__quant label[b-j4fbgg8utm] {
    cursor: pointer;
    border-right: 1px solid #000;
    margin-right: 3px;
    padding-right: 5px;
    line-height: 18px
}

    .search-res__quant label:last-child[b-j4fbgg8utm] {
        border-right: none;
        padding-right: 0;
        margin-right: 0
    }

.search-res__quant input[type=radio]:checked + label[b-j4fbgg8utm] {
    color: #e82076
}

.search-res__quant-title[b-j4fbgg8utm] {
    margin-right: 25px;
    font-size: 18px
}

.search-res__h3[b-j4fbgg8utm] {
    color: #e82076;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 10px;
    font-size: 24px;
    line-height: 40px
}

@media (max-width: 445px) {
    .search-res__h3[b-j4fbgg8utm] {
        display: inline-block
    }
}

.search-res__title-wrap[b-j4fbgg8utm] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media (min-width: 768px) {
    .search-res__title-wrap[b-j4fbgg8utm] {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

@media (max-width: 445px) {
    .search-res__title-wrap[b-j4fbgg8utm] {
        display: contents
    }
}

.search-res__sect-title[b-j4fbgg8utm] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 767px) {
    .search-res__sect-title[b-j4fbgg8utm] {
        margin-top: 30px
    }
}

.search-res__flip-wrap[b-j4fbgg8utm] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

    .search-res__flip-wrap .btn-flip[b-j4fbgg8utm] {
        margin-left: 12px
    }

@media (max-width: 445px) {
    .search-res__flip-wrap[b-j4fbgg8utm] {
        display: none
    }
}

.search-res__view-all[b-j4fbgg8utm] {
    text-decoration: none;
    position: relative;
    margin: 0;
    display: inline-block;
    padding-top: 4px;
    padding-right: 10px;
    padding-left: 0;
    font-size: 15px;
    line-height: 19px;
    font-weight: 400;
    color: #afafaf
}

    .search-res__view-all:active[b-j4fbgg8utm], .search-res__view-all:focus[b-j4fbgg8utm], .search-res__view-all:hover[b-j4fbgg8utm] {
        text-decoration: none;
        color: #e82076
    }

        .search-res__view-all:active[b-j4fbgg8utm]:before, .search-res__view-all:focus[b-j4fbgg8utm]:before, .search-res__view-all:hover[b-j4fbgg8utm]:before {
            border-left-color: #e82076;
            border-bottom-color: #e82076
        }

    .search-res__view-all[b-j4fbgg8utm]:before {
        position: absolute;
        content: "";
        display: block;
        border-left: 2px solid #000;
        border-bottom: 2px solid #000;
        left: auto;
        right: -2px;
        top: 10px;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
        border-color: #afafaf;
        width: 7px;
        height: 7px
    }

.search-res__instr[b-j4fbgg8utm] {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
    margin-bottom: 15px
}

    .search-res__instr span[b-j4fbgg8utm] {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        max-width: 80vw
    }

.search-res__btns .h3[b-j4fbgg8utm] {
    margin: 0;
    font-size: 24px;
    line-height: 40px;
    font-weight: 300
}

    .search-res__btns .h3 span[b-j4fbgg8utm] {
        color: #e82076;
        font-weight: 400
    }

    .search-res__btns .h3 .remove-filter[b-j4fbgg8utm] {
        background-color: rgba(227,13,128,.09)
    }

.search-res__btns .remove-filter[b-j4fbgg8utm] {
    display: inline-block;
    position: absolute;
    right: 4px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    padding: 4px;
    cursor: pointer
}

    .search-res__btns .remove-filter[b-j4fbgg8utm]:after, .search-res__btns .remove-filter[b-j4fbgg8utm]:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        height: 10px;
        width: 2px;
        background-color: #e82076
    }

    .search-res__btns .remove-filter[b-j4fbgg8utm]:before {
        -webkit-transform: translateY(-50%) rotate(45deg);
        transform: translateY(-50%) rotate(45deg)
    }

    .search-res__btns .remove-filter[b-j4fbgg8utm]:after {
        -webkit-transform: translateY(-50%) rotate(-45deg);
        transform: translateY(-50%) rotate(-45deg)
    }
/* /Components/Pages/Admin/Shared/_Filters.razor.rz.scp.css */
f.search-res.isLoading[b-he8bc3ipii], .search-res.postLoadInstrumentSections[b-he8bc3ipii] {
    position: relative;
    min-height: 700px
}

.search-res__wrap[b-he8bc3ipii] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

    .search-res__wrap > div[b-he8bc3ipii] {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }

@media (min-width: 768px) {
    .search-res__wrap > div[b-he8bc3ipii] {
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%
    }
}

@media (min-width: 768px) {
    .search-res__wrap > div.full-width[b-he8bc3ipii] {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
}

.search-res .form-control[b-he8bc3ipii] {
    border-radius: 0;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent
}

.search-res .custom-control[b-he8bc3ipii] {
    position: relative;
    background-color: #fff;
    height: 36px;
    border: 1px solid #f4f4f4;
    border-radius: 18px
}

    .search-res .custom-control[b-he8bc3ipii]:after, .search-res .custom-control[b-he8bc3ipii]:before {
        display: block;
        content: "";
        position: absolute
    }

    .search-res .custom-control[b-he8bc3ipii]:after {
        right: 0;
        top: 0;
        width: 34px;
        height: 34px;
        background-color: #e82076;
        z-index: 11;
        border-radius: 50%
    }

    .search-res .custom-control[b-he8bc3ipii]:before {
        width: 8px;
        height: 8px;
        border-bottom: 2px solid #fff;
        border-right: 2px solid #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        right: 12px;
        top: 12px;
        z-index: 12
    }

    .search-res .custom-control select[b-he8bc3ipii] {
        padding-right: 40px;
        z-index: 13;
        position: relative;
        background-color: transparent
    }

.search-res .separator[b-he8bc3ipii] {
    border-bottom: 1px solid #eee;
    margin: 30px 0;
    position: relative
}

    .search-res .separator[b-he8bc3ipii]:after {
        display: block;
        content: "";
        position: absolute;
        left: 10%;
        right: 10%;
        top: 0;
        border-bottom: 1px solid #e0e0e0
    }

.search-res__action[b-he8bc3ipii] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 0px solid #eee
}

@media (max-width: 1024px) {
    .search-res__action[b-he8bc3ipii] {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 0
    }
}

.search-res__action .custom-control[b-he8bc3ipii] {
    display: inline-block
}

    .search-res__action .custom-control[b-he8bc3ipii]:after {
        background-color: #fff
    }

    .search-res__action .custom-control[b-he8bc3ipii]:before {
        border-bottom: 2px solid #e82076;
        border-right: 2px solid #e82076
    }

    .search-res__action .custom-control .form-control[b-he8bc3ipii] {
        font-weight: 400
    }

.search-res__action label[b-he8bc3ipii] {
    margin: 0 10px 0 0;
    font-weight: 300
}

.search-res__action .custom-control.score-list-results[b-he8bc3ipii] {
    width: 135px;
    border: none
}

    .search-res__action .custom-control.score-list-results[b-he8bc3ipii]:before {
        border-bottom: 2px solid #9b9b9b;
        border-right: 2px solid #9b9b9b
    }

    .search-res__action .custom-control.score-list-results #searchResOrder[b-he8bc3ipii] {
        padding-right: 30px
    }

.search-res__action-btns[b-he8bc3ipii] {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

@media (max-width: 1024px) {
    .search-res__action-btns[b-he8bc3ipii] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 16px
    }
}

.search-res__order[b-he8bc3ipii] {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

    .search-res__order label[b-he8bc3ipii] {
        margin: 0
    }

.search-res__bubbles[b-he8bc3ipii] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    list-style-type: none;
    margin: 0;
    padding: 0
}

@media (max-width: 1024px) {
    .search-res__bubbles[b-he8bc3ipii] {
        margin-bottom: 32px
    }
}

.search-res__bubbles li[b-he8bc3ipii] {
    position: relative;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    padding-left: 12px;
    padding-right: 28px;
    background-color: rgba(227,13,128,.051);
    color: #e82076;
    font-weight: 400;
    height: 32px;
    line-height: 32px;
    border-radius: 100vh
}

.search-res__quant[b-he8bc3ipii] {
    margin-top: 20px
}

@media (min-width: 768px) {
    .search-res__quant[b-he8bc3ipii] {
        margin-top: 0;
        padding-left: 45px
    }
}

.search-res__quant label[b-he8bc3ipii] {
    cursor: pointer;
    border-right: 1px solid #000;
    margin-right: 3px;
    padding-right: 5px;
    line-height: 18px
}

    .search-res__quant label:last-child[b-he8bc3ipii] {
        border-right: none;
        padding-right: 0;
        margin-right: 0
    }

.search-res__quant input[type=radio]:checked + label[b-he8bc3ipii] {
    color: #e82076
}

.search-res__quant-title[b-he8bc3ipii] {
    margin-right: 25px;
    font-size: 18px
}

.search-res__h3[b-he8bc3ipii] {
    color: #e82076;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 10px;
    font-size: 24px;
    line-height: 40px
}

@media (max-width: 445px) {
    .search-res__h3[b-he8bc3ipii] {
        display: inline-block
    }
}

.search-res__title-wrap[b-he8bc3ipii] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media (min-width: 768px) {
    .search-res__title-wrap[b-he8bc3ipii] {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

@media (max-width: 445px) {
    .search-res__title-wrap[b-he8bc3ipii] {
        display: contents
    }
}

.search-res__sect-title[b-he8bc3ipii] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 767px) {
    .search-res__sect-title[b-he8bc3ipii] {
        margin-top: 30px
    }
}

.search-res__flip-wrap[b-he8bc3ipii] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

    .search-res__flip-wrap .btn-flip[b-he8bc3ipii] {
        margin-left: 12px
    }

@media (max-width: 445px) {
    .search-res__flip-wrap[b-he8bc3ipii] {
        display: none
    }
}

.search-res__view-all[b-he8bc3ipii] {
    text-decoration: none;
    position: relative;
    margin: 0;
    display: inline-block;
    padding-top: 4px;
    padding-right: 10px;
    padding-left: 0;
    font-size: 15px;
    line-height: 19px;
    font-weight: 400;
    color: #afafaf
}

    .search-res__view-all:active[b-he8bc3ipii], .search-res__view-all:focus[b-he8bc3ipii], .search-res__view-all:hover[b-he8bc3ipii] {
        text-decoration: none;
        color: #e82076
    }

        .search-res__view-all:active[b-he8bc3ipii]:before, .search-res__view-all:focus[b-he8bc3ipii]:before, .search-res__view-all:hover[b-he8bc3ipii]:before {
            border-left-color: #e82076;
            border-bottom-color: #e82076
        }

    .search-res__view-all[b-he8bc3ipii]:before {
        position: absolute;
        content: "";
        display: block;
        border-left: 2px solid #000;
        border-bottom: 2px solid #000;
        left: auto;
        right: -2px;
        top: 10px;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
        border-color: #afafaf;
        width: 7px;
        height: 7px
    }

.search-res__instr[b-he8bc3ipii] {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
    margin-bottom: 15px
}

    .search-res__instr span[b-he8bc3ipii] {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        max-width: 80vw
    }

.search-res__btns .h3[b-he8bc3ipii] {
    margin: 0;
    font-size: 24px;
    line-height: 40px;
    font-weight: 300
}

    .search-res__btns .h3 span[b-he8bc3ipii] {
        color: #e82076;
        font-weight: 400
    }

    .search-res__btns .h3 .remove-filter[b-he8bc3ipii] {
        background-color: rgba(227,13,128,.09)
    }

.search-res__btns .remove-filter[b-he8bc3ipii] {
    display: inline-block;
    position: absolute;
    right: 4px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    padding: 4px;
    cursor: pointer
}

    .search-res__btns .remove-filter[b-he8bc3ipii]:after, .search-res__btns .remove-filter[b-he8bc3ipii]:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        height: 10px;
        width: 2px;
        background-color: #e82076
    }

    .search-res__btns .remove-filter[b-he8bc3ipii]:before {
        -webkit-transform: translateY(-50%) rotate(45deg);
        transform: translateY(-50%) rotate(45deg)
    }

    .search-res__btns .remove-filter[b-he8bc3ipii]:after {
        -webkit-transform: translateY(-50%) rotate(-45deg);
        transform: translateY(-50%) rotate(-45deg)
    }
/* /Components/Pages/Admin/Shared/_Loader.razor.rz.scp.css */
.loader-container[b-2av72pyy8r] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader[b-2av72pyy8r] {
    position: fixed;
    top: 0;
    left: 0;
    width: 58px;
    height: 64px;
    z-index: 10000;
    bottom: 0;
    box-sizing: border-box;
    right: 0;
    margin: auto;
    padding: 0px;
}

    .loader[b-2av72pyy8r]:after {
        animation: loader-b-2av72pyy8r 1.2s linear infinite;
        content: "";
        border: 8px solid #dfc;
        border-color: #1d4568 transparent #1d4568 transparent;
        border-radius: 50%;
        box-sizing: border-box;
        display: block;
        height: 56px;
        margin: 1px;
        width: 56px;
    }

@keyframes loader-b-2av72pyy8r {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Components/Pages/Admin/Shared/_Title.razor.rz.scp.css */
/* Admin Page Title Styles */
.admin-page-header[b-h9cd43ghfa] {
    margin-bottom: 1.5rem;
}

.admin-page-title[b-h9cd43ghfa] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.admin-page-subtitle[b-h9cd43ghfa] {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}
/* /Components/Pages/Admin/SteteClaim/_SteteClaimUpsertForm.razor.rz.scp.css */
/* Header tabova (dugmad) mora ostati vidljiv dok se skroluje sadržaj taba. "position: sticky"
   na traci sa dugmadima se pokazalo nepouzdano unutar modal-body-ja koji već ima svoj
   overflow-y: auto (dvostruki skrol kontekst ga "guta"). Umesto toga, sam sadržaj taba
   (BlazorBootstrap "tab-content" div) dobija OGRANIČENU visinu i SOPSTVENI skrol - traka sa
   dugmadima (koja mu prethodi kao sibling, van skrolujuće zone) time nikad ne napušta ekran. */
[b-u7mym10ine] .tab-content {
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
}
/* /Components/Pages/Admin/User/AdminUserSearch.razor.rz.scp.css */
/* Admin User Search Page Styles */

/* Page Header */
:deep(.h2)[b-zse6xik5n0] {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0;
}

/* Search and Filter Row */
.row.mb-4[b-zse6xik5n0] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Grid Styling */
:deep(.table)[b-zse6xik5n0] {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

:deep(.table thead th)[b-zse6xik5n0] {
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

:deep(.table tbody td)[b-zse6xik5n0] {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}

:deep(.table tbody tr:hover)[b-zse6xik5n0] {
    background-color: #f8fafc;
}

:deep(.table tbody td span)[b-zse6xik5n0] {
    font-size: 0.9rem !important;
}

/* Action Buttons */
:deep(.btn-outline-primary)[b-zse6xik5n0] {
    border-color: #3b82f6;
    color: #3b82f6;
    font-size: 0.85rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

:deep(.btn-outline-primary:hover)[b-zse6xik5n0] {
    background-color: #3b82f6;
    color: white;
}

:deep(.btn-outline-success)[b-zse6xik5n0] {
    border-color: #22c55e;
    color: #22c55e;
    font-size: 0.85rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
}

:deep(.btn-outline-success:hover)[b-zse6xik5n0] {
    background-color: #22c55e;
    color: white;
}

:deep(.btn-outline-danger)[b-zse6xik5n0] {
    border-color: #ef4444;
    color: #ef4444;
    font-size: 0.85rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
}

:deep(.btn-outline-danger:hover)[b-zse6xik5n0] {
    background-color: #ef4444;
    color: white;
}

/* Pagination */
:deep(.pagination)[b-zse6xik5n0] {
    margin-top: 1rem;
}

:deep(.page-link)[b-zse6xik5n0] {
    border-radius: 6px;
    margin: 0 2px;
    color: #3b82f6;
}

:deep(.page-item.active .page-link)[b-zse6xik5n0] {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

/* Modal Styling */
.modal-content[b-zse6xik5n0] {
    border-radius: 12px;
    border: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.modal-header[b-zse6xik5n0] {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 12px 12px 0 0;
    padding: 1rem 1.5rem;
}

.modal-title[b-zse6xik5n0] {
    font-weight: 600;
    color: #1e293b;
}

.modal-body[b-zse6xik5n0] {
    padding: 1.5rem;
}

.modal-footer[b-zse6xik5n0] {
    border-top: 1px solid #e2e8f0;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-radius: 0 0 12px 12px;
}

.form-select[b-zse6xik5n0] {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 0.625rem 1rem;
}

.form-select:focus[b-zse6xik5n0] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Alert styling */
.alert-danger[b-zse6xik5n0] {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
    border-radius: 8px;
}

/* Button styling in modals */
.modal-footer .btn-primary[b-zse6xik5n0] {
    background-color: #3b82f6;
    border-color: #3b82f6;
    border-radius: 6px;
    padding: 0.5rem 1.25rem;
}

.modal-footer .btn-primary:hover[b-zse6xik5n0] {
    background-color: #2563eb;
    border-color: #2563eb;
}

.modal-footer .btn-secondary[b-zse6xik5n0] {
    background-color: #64748b;
    border-color: #64748b;
    border-radius: 6px;
    padding: 0.5rem 1.25rem;
}

/* Breadcrumb styling */
:deep(.breadcrumb)[b-zse6xik5n0] {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

:deep(.breadcrumb-item a)[b-zse6xik5n0] {
    color: #3b82f6;
    text-decoration: none;
}

:deep(.breadcrumb-item.active)[b-zse6xik5n0] {
    color: #64748b;
}
/* /Components/Pages/Admin/Vehicle/_VehicleUpsertForm.razor.rz.scp.css */
/* Header tabova (dugmad) mora ostati vidljiv dok se skroluje sadržaj taba. "position: sticky"
   na traci sa dugmadima se pokazalo nepouzdano unutar modal-body-ja koji već ima svoj
   overflow-y: auto (dvostruki skrol kontekst ga "guta"). Umesto toga, sam sadržaj taba
   (BlazorBootstrap "tab-content" div) dobija OGRANIČENU visinu i SOPSTVENI skrol - traka sa
   dugmadima (koja mu prethodi kao sibling, van skrolujuće zone) time nikad ne napušta ekran. */
[b-hq52f3z847] .tab-content {
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
}
/* /Components/Pages/Admin/WebNaknada/WebNaknadaHome.razor.rz.scp.css */
.web-naknada-home[b-a1qnxsclvn]  .wn-counter-card {
    cursor: default;
    position: relative;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-counter-icons {
    position: absolute;
    top: 3px;
    right: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
    max-width: 70px;
    z-index: 2;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-counter-icon {
    color: #9aa0a6;
    font-size: 11px;
    cursor: pointer;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-counter-icon:hover {
    color: #257180;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-list-table th {
    color: #257180;
    white-space: nowrap;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-counter-clickable {
    cursor: pointer;
    transition: box-shadow .12s ease, transform .12s ease;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-counter-clickable:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    transform: translateY(-1px);
}

.web-naknada-home[b-a1qnxsclvn]  .wn-alarm-banner {
    font-size: 12px;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-counter-value {
    font-size: 34px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 2px;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-counter-title {
    color: #257180;
    font-size: 11px;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-group-title {
    color: #257180;
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0 2px;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-grid-title {
    color: #257180;
    font-size: 20px;
    margin: 0;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-grid-title i {
    color: #257180;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-icon {
    color: #257180;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-table th {
    font-size: 13px;
    color: #257180;
   /* vertical-align: top;*/
   /* white-space: nowrap;*/
    padding-top: 10px;
    border-bottom: 2px solid #dee2e6;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-col-title {
  /*  white-space: normal;*/
    word-break: break-word;
    line-height: 1.2;
    text-align: center;
    font-weight: 700;
}

/* Fiksna visina reda sa nazivom kolone (do 2 reda teksta), da bi filter polja
   ispod ostala u ravni bez obzira da li se naziv kolone prelama u jedan ili dva reda. */
.web-naknada-home[b-a1qnxsclvn]  .wn-col-title-row {
    min-height: 2.5em;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-table td {
    font-size: 13px;
    vertical-align: middle;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-filter-input,
.web-naknada-home[b-a1qnxsclvn]  .wn-day-op {
    font-size: 11px;
    font-weight: 400;
    margin-top: 6px;
    padding: 2px 4px;
    min-height: 0;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-day-op {
    max-width: 53px;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-sort-icon {
    font-size: 12px;
    color: #e8622c;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-link {
    color: #6997a6;
    cursor: pointer;
    text-decoration: underline;
    font-weight: 600;
}

    .web-naknada-home[b-a1qnxsclvn]  .wn-link:hover {
        color: #198754;
    }

/* Kada je izabrano više od 5 stavki -> fiksna maksimalna visina sa skrolom */
.web-naknada-home[b-a1qnxsclvn]  .wn-scroll {
    max-height: 700px;
    overflow-y: auto;
}

/* Zaglavlje (naslovi + filteri) ostaje vidljivo pri skrolu */
.web-naknada-home[b-a1qnxsclvn]  .wn-scroll thead th {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
}

/* Dropdown za čekiranje vidljivih kolona grida */
.web-naknada-home[b-a1qnxsclvn]  .wn-column-picker {
    position: relative;
    display: inline-flex;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-column-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 10;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-column-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    padding: 8px 10px;
    min-width: 180px;
    max-height: 320px;
    overflow-y: auto;
    z-index: 11;
    text-align: left;
}

.web-naknada-home[b-a1qnxsclvn]  .wn-column-menu .form-check {
    white-space: nowrap;
}
/* /Components/Pages/Contact.razor.rz.scp.css */
/* Hero */
.contact-hero[b-4ed85di7e9] {
    background: linear-gradient(180deg, #0f172a 0%, #519ba8 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-hero-content[b-4ed85di7e9] {
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero h1[b-4ed85di7e9] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero p[b-4ed85di7e9] {
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-container[b-4ed85di7e9] {
    max-width: 1200px;
    margin: 0 auto;
}

/* Info Cards */
.contact-info-section[b-4ed85di7e9] {
    padding: 4rem 2rem 2rem;
    background: #f8fafc;
}

.contact-info-grid[b-4ed85di7e9] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-info-card[b-4ed85di7e9] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
}

.contact-icon[b-4ed85di7e9] {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.contact-info-card h3[b-4ed85di7e9] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.contact-info-card p[b-4ed85di7e9] {
    font-size: 1.05rem;
    color: #334155;
    margin: 0 0 0.25rem;
}

.contact-info-card a[b-4ed85di7e9] {
    color: #2d5a87;
    font-weight: 600;
    text-decoration: none;
}

.contact-info-card a:hover[b-4ed85di7e9] {
    text-decoration: underline;
}

.contact-note[b-4ed85di7e9] {
    font-size: 0.85rem !important;
    color: #94a3b8 !important;
}

/* Form + Details */
.contact-main-section[b-4ed85di7e9] {
    padding: 3rem 2rem 5rem;
    background: #f8fafc;
}

.contact-main-grid[b-4ed85di7e9] {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper[b-4ed85di7e9] {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-form-wrapper h2[b-4ed85di7e9] {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.form-intro[b-4ed85di7e9] {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-intro a[b-4ed85di7e9] {
    color: #2d5a87;
    font-weight: 600;
}

.form-alert[b-4ed85di7e9] {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.form-alert-success[b-4ed85di7e9] {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-alert-error[b-4ed85di7e9] {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form-group[b-4ed85di7e9] {
    margin-bottom: 1.25rem;
}

.form-row[b-4ed85di7e9] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group label[b-4ed85di7e9] {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.4rem;
}

.form-group[b-4ed85di7e9]  .form-control {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

.form-group[b-4ed85di7e9]  .form-control:focus {
    outline: none;
    border-color: #2d5a87;
    box-shadow: 0 0 0 3px rgba(45,90,135,0.12);
}

.form-group[b-4ed85di7e9]  .validation-message {
    display: block;
    font-size: 0.85rem;
    color: #dc2626;
    margin-top: 0.3rem;
}

.btn-submit[b-4ed85di7e9] {
    background: #1a365d;
    color: white;
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-submit:disabled[b-4ed85di7e9] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-submit:hover:not(:disabled)[b-4ed85di7e9] {
    background: #2d5a87;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Details column */
.contact-details[b-4ed85di7e9] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-card[b-4ed85di7e9] {
    background: white;
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.detail-card h3[b-4ed85di7e9] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.detail-card p[b-4ed85di7e9] {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* CTA */
.contact-cta[b-4ed85di7e9] {
    background: linear-gradient(180deg, #0f172a 0%, #519ba8 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.contact-cta-container[b-4ed85di7e9] {
    max-width: 600px;
    margin: 0 auto;
}

.contact-cta h2[b-4ed85di7e9] {
    color: white;
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-cta p[b-4ed85di7e9] {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-cta[b-4ed85di7e9] {
    display: inline-block;
    background: white;
    color: #1a365d;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-cta:hover[b-4ed85di7e9] {
    background: #f0f4f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-main-grid[b-4ed85di7e9] {
        grid-template-columns: 1fr;
    }

    .contact-details[b-4ed85di7e9] {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .detail-card[b-4ed85di7e9] {
        flex: 1 1 250px;
    }
}

@media (max-width: 768px) {
    .contact-hero h1[b-4ed85di7e9] {
        font-size: 2rem;
    }

    .contact-info-grid[b-4ed85di7e9] {
        grid-template-columns: 1fr;
    }

    .form-row[b-4ed85di7e9] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Login Gate Section (shown when IsEprocenaEnabled is false) */
.login-gate-section[b-gf13zwe2l1] {
    min-height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0f172a 0%, #519ba8 100%);
    padding: 2rem;
}

.login-gate-card[b-gf13zwe2l1] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    padding: 3rem 2.5rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
}

.login-gate-logo[b-gf13zwe2l1] {
    height: 40px;
    width: auto;
    margin-bottom: 1.5rem;
}

.login-gate-card h1[b-gf13zwe2l1] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.login-gate-subtitle[b-gf13zwe2l1] {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-login-gate[b-gf13zwe2l1] {
    display: inline-block;
    width: 100%;
    background: #1a365d;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-login-gate:hover[b-gf13zwe2l1] {
    background: #142c4d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero-section[b-gf13zwe2l1] {
    background: linear-gradient(180deg, #0f172a 0%, #519ba8 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content[b-gf13zwe2l1] {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1[b-gf13zwe2l1] {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle[b-gf13zwe2l1] {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons[b-gf13zwe2l1] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-hero[b-gf13zwe2l1] {
    background: white;
    color: #1a365d;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-primary-hero:hover[b-gf13zwe2l1] {
    background: #f0f4f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary-hero[b-gf13zwe2l1] {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid white;
    transition: all 0.2s ease;
}

.btn-secondary-hero:hover[b-gf13zwe2l1] {
    background: rgba(255,255,255,0.1);
}

/* Stats Section */
.stats-section[b-gf13zwe2l1] {
    background: #0f172a;
    padding: 3rem 2rem;
}

.stats-container[b-gf13zwe2l1] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item[b-gf13zwe2l1] {
    color: white;
}

.stat-number[b-gf13zwe2l1] {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat-label[b-gf13zwe2l1] {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Info Section */
.info-section[b-gf13zwe2l1] {
    padding: 4rem 2rem;
    background: white;
}

.info-container[b-gf13zwe2l1] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.info-block h2[b-gf13zwe2l1] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
}

.info-block p[b-gf13zwe2l1] {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
}

/* Services Section */
.services-section[b-gf13zwe2l1] {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.services-container[b-gf13zwe2l1] {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title[b-gf13zwe2l1] {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.section-subtitle[b-gf13zwe2l1] {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.services-grid[b-gf13zwe2l1] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card[b-gf13zwe2l1] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover[b-gf13zwe2l1] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-icon[b-gf13zwe2l1] {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.service-card h3[b-gf13zwe2l1] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.service-card p[b-gf13zwe2l1] {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Documentation Section */
.docs-section[b-gf13zwe2l1] {
    padding: 5rem 2rem;
    background: white;
}

.docs-grid[b-gf13zwe2l1] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.doc-item[b-gf13zwe2l1] {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.doc-number[b-gf13zwe2l1] {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #1a365d;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.doc-item h3[b-gf13zwe2l1] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.doc-item p[b-gf13zwe2l1] {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section[b-gf13zwe2l1] {
    background: linear-gradient(180deg, #0f172a 0%, #519ba8 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-container[b-gf13zwe2l1] {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2[b-gf13zwe2l1] {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p[b-gf13zwe2l1] {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-cta[b-gf13zwe2l1] {
    display: inline-block;
    background: white;
    color: #1a365d;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-cta:hover[b-gf13zwe2l1] {
    background: #f0f4f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid[b-gf13zwe2l1] {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-container[b-gf13zwe2l1] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-container[b-gf13zwe2l1] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1[b-gf13zwe2l1] {
        font-size: 2rem;
    }

    .services-grid[b-gf13zwe2l1] {
        grid-template-columns: 1fr;
    }

    .docs-grid[b-gf13zwe2l1] {
        grid-template-columns: 1fr;
    }

    .stats-container[b-gf13zwe2l1] {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number[b-gf13zwe2l1] {
        font-size: 2rem;
    }
}
/* /Components/Shared/EProcenaFileManager.razor.rz.scp.css */
.file-manager-container[b-sqdz44pn6e] {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
    max-height: 80vh;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: auto;
    background: #fff;
}

.file-manager-overlay[b-sqdz44pn6e] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    z-index: 20;
}

.file-manager-toolbar[b-sqdz44pn6e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.toolbar-actions[b-sqdz44pn6e] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.toolbar-info[b-sqdz44pn6e] {
    display: flex;
    align-items: center;
}

.upload-progress[b-sqdz44pn6e] {
    display: flex;
    align-items: center;
}

.file-manager-content[b-sqdz44pn6e] {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.folder-tree-panel[b-sqdz44pn6e] {
    width: 280px;
    min-width: 200px;
    border-right: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
    background: #fafafa;
}

.folder-tree-header[b-sqdz44pn6e] {
    padding: 12px 16px;
    border-bottom: 1px solid #dee2e6;
    background: #fff;
}

.folder-tree-header h6[b-sqdz44pn6e] {
    margin: 0 0 8px 0;
    font-weight: 600;
}

.folder-tree[b-sqdz44pn6e] {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.tree-node[b-sqdz44pn6e] {
    user-select: none;
}

.folder-tree-item[b-sqdz44pn6e] {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.folder-tree-item:hover[b-sqdz44pn6e] {
    background-color: #e9ecef;
}

.folder-tree-item.active[b-sqdz44pn6e] {
    background-color: #e7f1ff;
    border-right: 3px solid #0d6efd;
}

.tree-toggle[b-sqdz44pn6e] {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6c757d;
}

.tree-toggle:hover[b-sqdz44pn6e] {
    color: #212529;
}

.tree-toggle-spacer[b-sqdz44pn6e] {
    width: 20px;
}

.tree-content[b-sqdz44pn6e] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.tree-folder-icon[b-sqdz44pn6e] {
    font-size: 1rem;
}

.tree-folder-name[b-sqdz44pn6e] {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.875rem;
}

.tree-children[b-sqdz44pn6e] {
    margin-left: 0;
}

.file-grid-panel[b-sqdz44pn6e] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.file-grid-header[b-sqdz44pn6e] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 16px;
    border-bottom: 1px solid #dee2e6;
    background: #fff;
    gap: 16px;
}

.file-grid-header h6[b-sqdz44pn6e] {
    margin: 0 0 4px 0;
    font-weight: 600;
}

.breadcrumb-sm[b-sqdz44pn6e] {
    font-size: 0.8rem;
}

.breadcrumb-sm .breadcrumb-item + .breadcrumb-item[b-sqdz44pn6e]::before {
    content: "›";
}

.search-container[b-sqdz44pn6e] {
    position: relative;
    min-width: 200px;
}

.search-container input[b-sqdz44pn6e] {
    padding-left: 32px;
}

.search-icon[b-sqdz44pn6e] {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.file-grid[b-sqdz44pn6e] {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    padding: 16px;
    overflow-y: auto;
    align-content: start;
    transition: background-color 0.15s ease, outline-color 0.15s ease;
    outline: 2px dashed transparent;
    outline-offset: -2px;
}

.file-grid.drag-over[b-sqdz44pn6e] {
    background-color: #eef6ff;
    outline-color: #0d6efd;
}

.file-item[b-sqdz44pn6e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: center;
}

.file-item:hover[b-sqdz44pn6e] {
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.file-item.selected[b-sqdz44pn6e] {
    background-color: #e7f1ff;
    border-color: #0d6efd;
}

.file-item:focus[b-sqdz44pn6e] {
    outline: none;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
}

.file-item-missing[b-sqdz44pn6e] {
    cursor: default;
    background-color: #fff5f5;
    border-color: #f5c2c7;
    border-style: dashed;
}

.file-item-missing:hover[b-sqdz44pn6e] {
    background-color: #fff5f5;
    border-color: #f5c2c7;
}

.file-icon[b-sqdz44pn6e] {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.image-preview-body[b-sqdz44pn6e] {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #212529;
    padding: 0;
    position: relative;
}

.image-preview-nav[b-sqdz44pn6e] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.75);
    color: #212529;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.image-preview-nav:hover[b-sqdz44pn6e] {
    background-color: #fff;
}

.image-preview-nav-prev[b-sqdz44pn6e] {
    left: 12px;
}

.image-preview-nav-next[b-sqdz44pn6e] {
    right: 12px;
}

.image-preview[b-sqdz44pn6e] {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
}

.preview-modal[b-sqdz44pn6e] {
    max-width: 70vw;
    width: 70vw;
}

.pdf-preview-body[b-sqdz44pn6e] {
    padding: 0;
    height: 80vh;
}

.pdf-preview[b-sqdz44pn6e] {
    width: 100%;
    height: 100%;
    border: none;
}

.file-thumbnail[b-sqdz44pn6e] {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.file-name[b-sqdz44pn6e] {
    font-size: 0.8rem;
    word-break: break-word;
    max-width: 100%;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.file-rename-input[b-sqdz44pn6e] {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
}

.file-info[b-sqdz44pn6e] {
    margin-top: 4px;
}

.empty-folder[b-sqdz44pn6e] {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    color: #6c757d;
}

.empty-folder i[b-sqdz44pn6e] {
    font-size: 4rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-folder p[b-sqdz44pn6e] {
    margin: 0;
    font-size: 1rem;
}

/* Responsive */
@@media (max-width: 768px) {
    .file-manager-content[b-sqdz44pn6e] {
        flex-direction: column;
    }

    .folder-tree-panel[b-sqdz44pn6e] {
        width: 100%;
        max-height: 200px;
        border-right: none;
        border-bottom: 1px solid #dee2e6;
    }

    .file-grid[b-sqdz44pn6e] {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}
/* /Components/Shared/_ClaimantVehicleHistoryTab.razor.rz.scp.css */
.history-table[b-i3mu0hqd4w] {
    table-layout: fixed;
    width: 100%;
}

.history-table th[b-i3mu0hqd4w],
.history-table td[b-i3mu0hqd4w] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}
