/* _content/DVPROS/Components/Account/Pages/Login.razor.rz.scp.css */
/* Login.razor.css */

.authentication-container[b-qpetf9ovtc] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
}

.authentication-card[b-qpetf9ovtc] {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
}

.authentication-brand[b-qpetf9ovtc] {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
    text-align: center;
}

.brand-logo[b-qpetf9ovtc] {
    margin-bottom: 2rem;
}

.brand-title[b-qpetf9ovtc] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.brand-subtitle[b-qpetf9ovtc] {
    font-size: 1.2rem;
    opacity: 0.8;
}

.authentication-features[b-qpetf9ovtc] {
    margin-top: 3rem;
}

.feature-item[b-qpetf9ovtc] {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-icon[b-qpetf9ovtc] {
    font-size: 1.5rem;
    margin-right: 1rem;
    opacity: 0.9;
}

.feature-text[b-qpetf9ovtc] {
    font-size: 1rem;
}

.authentication-form[b-qpetf9ovtc] {
    padding: 3rem;
    flex: 1;
}

    .authentication-form h2[b-qpetf9ovtc] {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--dark-color);
    }

.auth-description[b-qpetf9ovtc] {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* Responsive styling */
@media (max-width: 992px) {
    .authentication-card[b-qpetf9ovtc] {
        flex-direction: column;
    }

    .authentication-brand[b-qpetf9ovtc] {
        width: 100%;
        padding: 2rem;
    }

    .authentication-form[b-qpetf9ovtc] {
        padding: 2rem;
    }
}

/* Add these styles to your MainLayout.razor.css file */

/* Login page specific styles */
.login-page[b-qpetf9ovtc] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8fafc;
}

.login-content[b-qpetf9ovtc] {
    flex: 1;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Login form styling */
.login-form-container[b-qpetf9ovtc] {
    max-width: 500px;
    width: 100%;
    padding: 0 1rem;
}

.login-logo[b-qpetf9ovtc] {
    text-align: center;
    margin-bottom: 2rem;
}

    .login-logo .brand-title[b-qpetf9ovtc] {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2d3748;
        margin-bottom: 0.25rem;
        letter-spacing: 0.5px;
    }

    .login-logo .brand-subtitle[b-qpetf9ovtc] {
        font-size: 1rem;
        color: #718096;
        margin-bottom: 0;
    }

.login-card[b-qpetf9ovtc] {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.login-header[b-qpetf9ovtc] {
    background-color: #2d3748;
    color: white;
    padding: 2rem;
    text-align: center;
}

    .login-header h2[b-qpetf9ovtc] {
        margin: 0;
        font-weight: 600;
    }

.login-body[b-qpetf9ovtc] {
    padding: 2rem;
}

.login-footer[b-qpetf9ovtc] {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

/* Existing styles for authenticated pages */
.page[b-qpetf9ovtc] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media (min-width: 641px) {
    .page[b-qpetf9ovtc] {
        flex-direction: row;
    }

    .sidebar[b-qpetf9ovtc] {
        width: 280px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-qpetf9ovtc] {
        position: sticky;
        top: 0;
    }

    .top-row[b-qpetf9ovtc], article[b-qpetf9ovtc] {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

/* Updated footer for both layouts */
.footer[b-qpetf9ovtc] {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    min-height: 3.5rem;
    display: flex;
    align-items: center;
}

    /* Footer content styling */
    .footer .container-fluid[b-qpetf9ovtc] {
        width: 100%;
    }

    /* Update links in footer */
    .footer a[b-qpetf9ovtc] {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer a:hover[b-qpetf9ovtc] {
            color: white;
            text-decoration: underline;
        }

    /* Version number styling */
    .footer .version[b-qpetf9ovtc] {
        opacity: 0.7;
        font-size: 0.8rem;
    }

/* Improve the footer on mobile devices */
@media (max-width: 768px) {
    .footer[b-qpetf9ovtc] {
        text-align: center;
        padding: 0.75rem 1rem;
    }

        .footer .text-end[b-qpetf9ovtc] {
            text-align: center !important;
            margin-top: 0.5rem;
        }
}
/* _content/DVPROS/Components/Account/Pages/Manage/UserProfile.razor.rz.scp.css */
/* UserProfile.razor.css */

/* User avatar styling */
.user-avatar-lg[b-vrimx8g1bl] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.avatar-initials[b-vrimx8g1bl] {
    font-weight: 600;
}

/* Card styling */
.card[b-vrimx8g1bl] {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: none;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.card-header[b-vrimx8g1bl] {
    padding: 1.25rem 1.5rem;
    background-color: white;
    border-bottom: 1px solid var(--gray-200);
}

.card-body[b-vrimx8g1bl] {
    padding: 1.5rem;
}

/* List group styling */
.list-group-item[b-vrimx8g1bl] {
    padding: 1rem 1.5rem;
    border-color: var(--gray-200);
    transition: all 0.2s ease;
}

    .list-group-item:hover[b-vrimx8g1bl] {
        background-color: var(--gray-100);
    }

    .list-group-item.active[b-vrimx8g1bl] {
        background-color: var(--primary-light);
        color: var(--primary-color);
        border-color: var(--gray-200);
        border-left: 4px solid var(--primary-color);
    }

    .list-group-item i[b-vrimx8g1bl] {
        margin-right: 0.5rem;
    }

/* Form styling */
.form-label[b-vrimx8g1bl] {
    font-weight: 500;
    color: var(--gray-700);
}

.form-control[b-vrimx8g1bl], .form-select[b-vrimx8g1bl] {
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-300);
    padding: 0.5rem 0.75rem;
}

    .form-control:focus[b-vrimx8g1bl], .form-select:focus[b-vrimx8g1bl] {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.25rem rgba(79, 109, 245, 0.15);
    }

.form-text[b-vrimx8g1bl] {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.form-switch[b-vrimx8g1bl] {
    padding-left: 2.5rem;
}

.form-check-input:checked[b-vrimx8g1bl] {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Buttons */
.btn[b-vrimx8g1bl] {
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-primary[b-vrimx8g1bl] {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover[b-vrimx8g1bl], .btn-primary:focus[b-vrimx8g1bl] {
        background-color: var(--primary-hover);
        border-color: var(--primary-hover);
    }

/* Responsive */
@media (max-width: 768px) {
    .card-body[b-vrimx8g1bl] {
        padding: 1rem;
    }
}
/* _content/DVPROS/Components/Layout/MainLayout.razor.rz.scp.css */
/* Main Layout Styles */
.page[b-wbs82erje8] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-wbs82erje8] {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #f8fafc;
}

.content[b-wbs82erje8] {
    flex: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Sidebar Styling */
.sidebar[b-wbs82erje8] {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.brand-container[b-wbs82erje8] {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-title[b-wbs82erje8] {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.brand-subtitle[b-wbs82erje8] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Top Row Styling */
.top-row[b-wbs82erje8] {
    height: 4rem;
    background-color: white;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    z-index: 10;
}

.page-title[b-wbs82erje8] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.right-controls[b-wbs82erje8] {
    display: flex;
    align-items: center;
}

/* User Info Styling */
.user-info[b-wbs82erje8] {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 50px;
    padding: 0.25rem 0.25rem 0.25rem 0.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

    .user-info:hover[b-wbs82erje8] {
        background-color: #e9ecef;
    }

.user-avatar[b-wbs82erje8] {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #4A5568;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.avatar-initials[b-wbs82erje8] {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.user-details[b-wbs82erje8] {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.user-name[b-wbs82erje8] {
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
}

.user-role[b-wbs82erje8] {
    font-size: 0.75rem;
    color: #6c757d;
}

.user-menu-toggle[b-wbs82erje8] {
    background: none;
    border: none;
    color: #6c757d;
    padding: 0 0.5rem;
    margin-left: 0.5rem;
}

/* Footer styling to match the sidebar in your screenshot */
.footer[b-wbs82erje8] {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%); /* Exact match to sidebar gradient */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7); /* Light text */
    min-height: 3.5rem; /* Ensures consistent height */
    display: flex;
    align-items: center;
}

    /* Footer content styling */
    .footer .container-fluid[b-wbs82erje8] {
        width: 100%;
    }

    /* Update links in footer */
    .footer a[b-wbs82erje8] {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer a:hover[b-wbs82erje8] {
            color: white;
            text-decoration: underline;
        }

    /* Version number styling */
    .footer .version[b-wbs82erje8] {
        opacity: 0.7;
        font-size: 0.8rem;
    }

    /* Add some spacing between rows in the footer */
    .footer .row[b-wbs82erje8] {
        margin-bottom: 0.5rem;
    }

/* Improve the footer on mobile devices */
@media (max-width: 768px) {
    .footer[b-wbs82erje8] {
        text-align: center;
        padding: 0.75rem 1rem;
    }

        .footer .text-end[b-wbs82erje8] {
            text-align: center !important;
            margin-top: 0.5rem;
        }
}

/* Error UI Styling */
#blazor-error-ui[b-wbs82erje8] {
    background: #fff8f8;
    border-top: 1px solid #f5c6cb;
    bottom: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    left: 0;
    padding: 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.error-container[b-wbs82erje8] {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
}

.error-icon[b-wbs82erje8] {
    color: #dc3545;
    font-size: 1.25rem;
    margin-right: 1rem;
}

.error-message[b-wbs82erje8] {
    flex: 1;
    color: #721c24;
}

#blazor-error-ui .reload[b-wbs82erje8] {
    color: #dc3545;
    margin-left: 0.5rem;
    text-decoration: underline;
}

#blazor-error-ui .dismiss[b-wbs82erje8] {
    cursor: pointer;
    position: relative;
    margin-left: 1rem;
    color: #721c24;
}

/* Button styling */
.btn-primary[b-wbs82erje8] {
    background-color: #4A5568;
    border-color: #4A5568;
}

    .btn-primary:hover[b-wbs82erje8] {
        background-color: #2D3748;
        border-color: #2D3748;
    }

/* Form styling */
.form-section[b-wbs82erje8] {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

    .form-section h4[b-wbs82erje8], .form-section h5[b-wbs82erje8] {
        color: #2D3748;
        margin-bottom: 1.25rem;
        font-weight: 600;
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 0.75rem;
    }

/* Card styling */
.card[b-wbs82erje8] {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-header.bg-primary[b-wbs82erje8] {
    background-color: #4A5568 !important;
}

/* Dashboard Stats */
.stats-container[b-wbs82erje8] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-card[b-wbs82erje8] {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease-in-out;
    border-top: 4px solid #4A5568;
}

    .stat-card:hover[b-wbs82erje8] {
        transform: translateY(-5px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    }

    .stat-card.danger[b-wbs82erje8] {
        border-top-color: #E53E3E;
    }

    .stat-card.warning[b-wbs82erje8] {
        border-top-color: #DD6B20;
    }

    .stat-card.success[b-wbs82erje8] {
        border-top-color: #38A169;
    }

.stat-icon[b-wbs82erje8] {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #4A5568;
}

.stat-value[b-wbs82erje8] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2D3748;
}

.stat-label[b-wbs82erje8] {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-change[b-wbs82erje8] {
    font-size: 0.8rem;
    color: #718096;
}

    .stat-change.positive[b-wbs82erje8] {
        color: #38A169;
    }

    .stat-change.negative[b-wbs82erje8] {
        color: #E53E3E;
    }

/* Responsive Styles */
@media (max-width: 640.98px) {
    .top-row[b-wbs82erje8] {
        height: auto;
        padding: 1rem;
        flex-wrap: wrap;
    }

    .right-controls[b-wbs82erje8] {
        margin-top: 0.5rem;
        width: 100%;
        justify-content: flex-end;
    }

    .page-title[b-wbs82erje8] {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .stats-container[b-wbs82erje8] {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 641px) {
    .page[b-wbs82erje8] {
        flex-direction: row;
    }

    .sidebar[b-wbs82erje8] {
        width: 280px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-wbs82erje8] {
        position: sticky;
        top: 0;
    }

    .top-row[b-wbs82erje8], article[b-wbs82erje8] {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

/* Dark Mode Support - Commented out but ready to use
@media (prefers-color-scheme: dark) {
    main {
        background-color: #121212;
    }
    
    .top-row, .footer {
        background-color: #1f1f1f;
        border-color: #2d2d2d;
    }
    
    .page-title, .user-name {
        color: #e4e4e4;
    }
    
    .user-role, .footer {
        color: #9e9e9e;
    }
    
    .user-info {
        background-color: #2d2d2d;
    }
    
    .user-info:hover {
        background-color: #3d3d3d;
    }
    
    .content {
        color: #e4e4e4;
    }
}
    */
/* _content/DVPROS/Components/Layout/NavMenu.razor.rz.scp.css */
/* NavMenu Container */
.nav-container[b-yvxtivtmnh] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Navbar Toggler for Mobile */
.navbar-toggler[b-yvxtivtmnh] {
    appearance: none;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.navbar-toggler-label[b-yvxtivtmnh] {
    display: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 0.75rem 1rem;
    position: relative;
}

    .navbar-toggler-label span[b-yvxtivtmnh],
    .navbar-toggler-label span[b-yvxtivtmnh]::before,
    .navbar-toggler-label span[b-yvxtivtmnh]::after {
        display: block;
        position: absolute;
        width: 1.5rem;
        height: 2px;
        background-color: white;
        transition: all 0.2s ease-in-out;
    }

    .navbar-toggler-label span[b-yvxtivtmnh] {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

        .navbar-toggler-label span[b-yvxtivtmnh]::before,
        .navbar-toggler-label span[b-yvxtivtmnh]::after {
            content: '';
            left: 0;
        }

        .navbar-toggler-label span[b-yvxtivtmnh]::before {
            top: -6px;
        }

        .navbar-toggler-label span[b-yvxtivtmnh]::after {
            bottom: -6px;
        }

.navbar-toggler:checked + .navbar-toggler-label span[b-yvxtivtmnh] {
    background-color: transparent;
}

    .navbar-toggler:checked + .navbar-toggler-label span[b-yvxtivtmnh]::before {
        top: 0;
        transform: rotate(45deg);
    }

    .navbar-toggler:checked + .navbar-toggler-label span[b-yvxtivtmnh]::after {
        bottom: 0;
        transform: rotate(-45deg);
    }

/* Scrollable Nav Area */
.nav-scrollable[b-yvxtivtmnh] {
    height: 100%;
    overflow-y: auto;
    flex: 1;
}

    /* Custom Scrollbar */
    .nav-scrollable[b-yvxtivtmnh]::-webkit-scrollbar {
        width: 4px;
    }

    .nav-scrollable[b-yvxtivtmnh]::-webkit-scrollbar-track {
        background: transparent;
    }

    .nav-scrollable[b-yvxtivtmnh]::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
    }

/* Navigation Sections */
.nav-sections[b-yvxtivtmnh] {
    padding: 1rem 0;
    flex: 1;
}

.nav-section-title[b-yvxtivtmnh] {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1.5rem;
    margin-top: 1rem;
}

.nav-items[b-yvxtivtmnh] {
    margin-bottom: 1rem;
}

/* Navigation Items */
.nav-item[b-yvxtivtmnh] {
    margin: 0.25rem 1rem;
}

    .nav-item .nav-link[b-yvxtivtmnh] {
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.2s ease-in-out;
        position: relative;
        overflow: hidden;
    }

        .nav-item .nav-link[b-yvxtivtmnh]::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background-color: #CBD5E0; /* Light gray indicator */
            opacity: 0;
            transform: translateX(-4px);
            transition: all 0.2s ease-in-out;
        }

        .nav-item .nav-link:hover[b-yvxtivtmnh] {
            color: white;
            background-color: rgba(255, 255, 255, 0.1);
        }

            .nav-item .nav-link:hover[b-yvxtivtmnh]::before {
                opacity: 1;
                transform: translateX(0);
            }

        .nav-item .nav-link.active[b-yvxtivtmnh] {
            color: white;
            background-color: rgba(255, 255, 255, 0.15);
        }

            .nav-item .nav-link.active[b-yvxtivtmnh]::before {
                opacity: 1;
                transform: translateX(0);
            }

    /* Admin Role Custom Styling */
    .nav-item.role-admin .nav-link[b-yvxtivtmnh]::before {
        background-color: #E53E3E; /* Red for admin */
    }

/* Icon and Text Styling */
.nav-icon[b-yvxtivtmnh] {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    margin-right: 0.75rem;
    color: currentColor;
}

.nav-text[b-yvxtivtmnh] {
    flex: 1;
    font-size: 0.95rem;
}

/* Notification Badge */
.notification-indicator[b-yvxtivtmnh] {
    width: 8px;
    height: 8px;
    background-color: #E53E3E; /* Red */
    border-radius: 50%;
    display: inline-block;
}

/* Badge Styling */
.badge[b-yvxtivtmnh] {
    font-size: 0.7rem;
    padding: 0.2em 0.5em;
    border-radius: 4px;
    background-color: #4A5568; /* Dark gray */
    color: white;
}

/* Nav Footer */
.nav-footer[b-yvxtivtmnh] {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-collapse-btn[b-yvxtivtmnh] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

    .nav-collapse-btn:hover[b-yvxtivtmnh] {
        color: white;
        background-color: rgba(255, 255, 255, 0.1);
    }

/* Button styling for logout */
.nav-item .nav-link button[b-yvxtivtmnh] {
    background: none;
    border: none;
    color: inherit;
    width: 100%;
    text-align: left;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 640.98px) {
    .navbar-toggler-label[b-yvxtivtmnh] {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-scrollable[b-yvxtivtmnh] {
        display: none;
        padding-top: 0;
    }

    .navbar-toggler:checked ~ .nav-scrollable[b-yvxtivtmnh] {
        display: block;
    }

    .nav-footer[b-yvxtivtmnh] {
        display: none;
    }
}

/* Bootstrap Icons */
.bi-house-door[b-yvxtivtmnh],
.bi-grid[b-yvxtivtmnh],
.bi-file-earmark-text[b-yvxtivtmnh],
.bi-list-ul[b-yvxtivtmnh],
.bi-graph-up[b-yvxtivtmnh],
.bi-pencil-square[b-yvxtivtmnh],
.bi-people[b-yvxtivtmnh],
.bi-gear[b-yvxtivtmnh],
.bi-person[b-yvxtivtmnh],
.bi-bell[b-yvxtivtmnh],
.bi-box-arrow-right[b-yvxtivtmnh],
.bi-chevron-left[b-yvxtivtmnh] {
    display: inline-block;
    vertical-align: -0.125em;
    width: 1em;
    height: 1em;
}
/* _content/DVPROS/Components/Pages/Admin/ClaimsList.razor.rz.scp.css */
/*ClaimsList.razor.css*/

/* Claims Dashboard Specific Styles */

/* Stats Cards for Dashboard */
.stats-container[b-8vu5384rpe] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-8vu5384rpe] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .stat-card:hover[b-8vu5384rpe] {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .stat-card[b-8vu5384rpe]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #4f6df5, #4cc9f0);
    }

    .stat-card.danger[b-8vu5384rpe]::before {
        background: linear-gradient(90deg, #f86c6b, #fd8c84);
    }

    .stat-card.warning[b-8vu5384rpe]::before {
        background: linear-gradient(90deg, #f8cb00, #ffdc4d);
    }

    .stat-card.success[b-8vu5384rpe]::before {
        background: linear-gradient(90deg, #2ecc71, #4ce09a);
    }

.stat-icon[b-8vu5384rpe] {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(79, 109, 245, 0.1);
    color: #4f6df5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stat-card.danger .stat-icon[b-8vu5384rpe] {
    background-color: rgba(248, 108, 107, 0.1);
    color: #f86c6b;
}

.stat-card.warning .stat-icon[b-8vu5384rpe] {
    background-color: rgba(248, 203, 0, 0.1);
    color: #f8cb00;
}

.stat-card.success .stat-icon[b-8vu5384rpe] {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.stat-value[b-8vu5384rpe] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.stat-label[b-8vu5384rpe] {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-change[b-8vu5384rpe] {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

    .stat-change.positive[b-8vu5384rpe] {
        color: #2ecc71;
    }

    .stat-change.negative[b-8vu5384rpe] {
        color: #f86c6b;
    }

    .stat-change i[b-8vu5384rpe] {
        margin-right: 0.25rem;
    }

/* Filter Controls Section */
.filters-section[b-8vu5384rpe] {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.filter-buttons[b-8vu5384rpe] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .filter-buttons .btn[b-8vu5384rpe] {
        border-radius: 50px;
        padding: 0.5rem 1.25rem;
        font-weight: 500;
        transition: all 0.2s ease;
    }

        .filter-buttons .btn:not(.btn-primary)[b-8vu5384rpe] {
            background-color: #f8f9fa;
            color: #495057;
            border: 1px solid #e9ecef;
        }

            .filter-buttons .btn:not(.btn-primary):hover[b-8vu5384rpe] {
                background-color: #e9ecef;
            }

.search-input[b-8vu5384rpe] {
    position: relative;
}

    .search-input input[b-8vu5384rpe] {
        border-radius: 50px;
        padding-left: 2.5rem;
        border: 1px solid #e9ecef;
        transition: all 0.2s ease;
    }

        .search-input input:focus[b-8vu5384rpe] {
            box-shadow: 0 0 0 0.25rem rgba(79, 109, 245, 0.15);
            border-color: #4f6df5;
        }

    .search-input i[b-8vu5384rpe] {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #6c757d;
    }

/* Enhanced Table Styling */
.claims-table[b-8vu5384rpe] {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

    .claims-table .table[b-8vu5384rpe] {
        margin-bottom: 0;
    }

    .claims-table th[b-8vu5384rpe] {
        background-color: #f8f9fa;
        color: #495057;
        font-weight: 600;
        border-top: none;
        padding: 1rem;
    }

    .claims-table td[b-8vu5384rpe] {
        padding: 1rem;
        vertical-align: middle;
    }

    .claims-table tr:hover[b-8vu5384rpe] {
        background-color: rgba(79, 109, 245, 0.03);
    }

    .claims-table .badge[b-8vu5384rpe] {
        font-size: 0.75rem;
        font-weight: 500;
        padding: 0.4em 0.8em;
        border-radius: 50px;
    }

    .claims-table .badge-danger[b-8vu5384rpe] {
        background-color: #f86c6b;
        color: white;
    }

    .claims-table .badge-warning[b-8vu5384rpe] {
        background-color: #f8cb00;
        color: #212529;
    }

    .claims-table .badge-info[b-8vu5384rpe] {
        background-color: #20a8d8;
        color: white;
    }

    .claims-table .badge-primary[b-8vu5384rpe] {
        background-color: #4f6df5;
        color: white;
    }

    .claims-table .btn-group .btn[b-8vu5384rpe] {
        border-radius: 6px;
        margin: 0 0.25rem;
        padding: 0.25rem 0.75rem;
        font-size: 0.85rem;
    }

    .claims-table .btn-info[b-8vu5384rpe] {
        background-color: #20a8d8;
        border-color: #20a8d8;
        color: white;
    }

    .claims-table .btn-danger[b-8vu5384rpe] {
        background-color: #f86c6b;
        border-color: #f86c6b;
    }

/* Pagination Styling */
.pagination-controls[b-8vu5384rpe] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    background-color: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pagination-info[b-8vu5384rpe] {
    font-size: 0.9rem;
    color: #6c757d;
}

.pagination-buttons .btn[b-8vu5384rpe] {
    border-radius: 6px;
    padding: 0.375rem 0.75rem;
    margin: 0 0.25rem;
}

    .pagination-buttons .btn:disabled[b-8vu5384rpe] {
        opacity: 0.5;
    }

/* Modal Enhancements */
.modal-content[b-8vu5384rpe] {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.modal-header[b-8vu5384rpe] {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1.25rem 1.5rem;
}

.modal-title[b-8vu5384rpe] {
    font-weight: 600;
    color: #333;
}

.modal-footer[b-8vu5384rpe] {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 1.25rem 1.5rem;
}

.modal-backdrop.fade.show[b-8vu5384rpe] {
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.5);
}

/* Claim Details Card Styling */
.detail-card[b-8vu5384rpe] {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

    .detail-card .card-title[b-8vu5384rpe] {
        font-size: 1.15rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid #e9ecef;
    }

    .detail-card .row[b-8vu5384rpe] {
        margin-bottom: 1rem;
    }

    .detail-card strong[b-8vu5384rpe] {
        color: #495057;
        font-weight: 600;
    }

/* Loading Animation */
.loading-spinner[b-8vu5384rpe] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.spinner-border[b-8vu5384rpe] {
    color: #4f6df5;
    width: 3rem;
    height: 3rem;
}

.loading-text[b-8vu5384rpe] {
    margin-top: 1rem;
    font-size: 1rem;
    color: #6c757d;
}

/* Empty State Message */
.empty-state[b-8vu5384rpe] {
    text-align: center;
    padding: 3rem 0;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.empty-state-icon[b-8vu5384rpe] {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.empty-state-message[b-8vu5384rpe] {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.empty-state-description[b-8vu5384rpe] {
    color: #6c757d;
    max-width: 400px;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .filters-section[b-8vu5384rpe] {
        padding: 1rem;
    }

    .stats-container[b-8vu5384rpe] {
        grid-template-columns: 1fr;
    }

    .claims-table[b-8vu5384rpe] {
        border-radius: 8px;
    }

        .claims-table th[b-8vu5384rpe],
        .claims-table td[b-8vu5384rpe] {
            padding: 0.75rem;
        }

    .pagination-controls[b-8vu5384rpe] {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}
/* _content/DVPROS/Components/Pages/Admin/Claims/ClaimDetails.razor.rz.scp.css */
/* ClaimDetails.razor.css */

/* Claim detail sections */
.detail-section[b-pok3i7c19m] {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.section-title[b-pok3i7c19m] {
    color: var(--gray-700);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}

/* Notes styling */
.notes-list[b-pok3i7c19m] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.note-item[b-pok3i7c19m] {
    background-color: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.2s ease;
}

    .note-item:hover[b-pok3i7c19m] {
        box-shadow: var(--box-shadow);
    }

    .note-item.internal-note[b-pok3i7c19m] {
        border-left: 4px solid var(--warning-color);
    }

.note-header[b-pok3i7c19m] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.note-user[b-pok3i7c19m] {
    font-weight: 600;
    color: var(--gray-800);
}

.note-date[b-pok3i7c19m] {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.note-content[b-pok3i7c19m] {
    padding: 1rem;
    color: var(--gray-800);
    white-space: pre-line;
}

/* User avatar styling */
.user-avatar-sm[b-pok3i7c19m], .user-avatar-lg[b-pok3i7c19m] {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
}

.user-avatar-sm[b-pok3i7c19m] {
    width: 2rem;
    height: 2rem;
    font-size: 0.8rem;
}

.user-avatar-lg[b-pok3i7c19m] {
    width: 5rem;
    height: 5rem;
    font-size: 1.8rem;
}

.avatar-initials[b-pok3i7c19m] {
    font-weight: 600;
}

/* Form section styling */
.form-section[b-pok3i7c19m] {
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
}

/* Document list styling */
.document-item[b-pok3i7c19m] {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: var(--border-radius);
    background-color: white;
    border: 1px solid var(--gray-200);
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

    .document-item:hover[b-pok3i7c19m] {
        box-shadow: var(--box-shadow);
    }

.document-icon[b-pok3i7c19m] {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.document-info[b-pok3i7c19m] {
    flex: 1;
}

.document-name[b-pok3i7c19m] {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.document-meta[b-pok3i7c19m] {
    display: flex;
    font-size: 0.8rem;
    color: var(--gray-600);
}

    .document-meta > div[b-pok3i7c19m] {
        margin-right: 1rem;
    }

/* Tabs styling */
.nav-tabs .nav-link[b-pok3i7c19m] {
    padding: 0.75rem 1rem;
    color: var(--gray-600);
    font-weight: 500;
    border: none;
    border-bottom: 2px solid transparent;
}

    .nav-tabs .nav-link.active[b-pok3i7c19m] {
        color: var(--primary-color);
        background-color: transparent;
        border-bottom: 2px solid var(--primary-color);
    }

    .nav-tabs .nav-link:hover:not(.active)[b-pok3i7c19m] {
        color: var(--gray-800);
        border-bottom: 2px solid var(--gray-300);
    }

/* Badge styling for document types */
.badge.bg-primary[b-pok3i7c19m] {
    background-color: var(--primary-color) !important;
}

.badge.bg-secondary[b-pok3i7c19m] {
    background-color: var(--gray-600) !important;
}

.badge.bg-success[b-pok3i7c19m] {
    background-color: var(--success-color) !important;
}

.badge.bg-danger[b-pok3i7c19m] {
    background-color: var(--danger-color) !important;
}

.badge.bg-warning[b-pok3i7c19m] {
    background-color: var(--warning-color) !important;
}

.badge.bg-info[b-pok3i7c19m] {
    background-color: var(--info-color) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .document-meta[b-pok3i7c19m] {
        flex-direction: column;
    }

        .document-meta > div[b-pok3i7c19m] {
            margin-right: 0;
            margin-bottom: 0.25rem;
        }

    .note-header[b-pok3i7c19m] {
        flex-direction: column;
        align-items: flex-start;
    }

        .note-header > div:last-child[b-pok3i7c19m] {
            margin-top: 0.5rem;
        }
}
/* _content/DVPROS/Components/Pages/Admin/Claims/ClaimDocuments.razor.rz.scp.css */
/* ClaimDocuments.razor.css */

.table-responsive[b-7hu05ywqrv] {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.table th[b-7hu05ywqrv] {
    background-color: var(--gray-100);
    color: var(--gray-700);
    font-weight: 600;
    border-top: none;
}

.table td[b-7hu05ywqrv] {
    vertical-align: middle;
}

.badge[b-7hu05ywqrv] {
    font-weight: 500;
    padding: 0.4em 0.7em;
}

.btn-group .btn[b-7hu05ywqrv] {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Common styles for both components */

.user-avatar-sm[b-7hu05ywqrv] {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.avatar-initials[b-7hu05ywqrv] {
    font-weight: 600;
    font-size: 0.8rem;
}

.section-title[b-7hu05ywqrv] {
    color: var(--gray-700);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}

/* Modal styling */
.modal-content[b-7hu05ywqrv] {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.modal-header[b-7hu05ywqrv] {
    border-bottom: 1px solid var(--gray-200);
    background-color: white;
    padding: 1.25rem 1.5rem;
}

.modal-footer[b-7hu05ywqrv] {
    border-top: 1px solid var(--gray-200);
    background-color: white;
    padding: 1.25rem 1.5rem;
}

.modal-backdrop.fade.show[b-7hu05ywqrv] {
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.5);
}
/* _content/DVPROS/Components/Pages/Admin/Claims/ClaimNotes.razor.rz.scp.css */
/* ClaimNotes.razor.css */

.notes-list[b-k22s0nfvul] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.note-item[b-k22s0nfvul] {
    background-color: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.2s ease;
}

    .note-item:hover[b-k22s0nfvul] {
        box-shadow: var(--box-shadow);
    }

    .note-item.internal-note[b-k22s0nfvul] {
        border-left: 4px solid var(--warning-color);
    }

.note-header[b-k22s0nfvul] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.note-user[b-k22s0nfvul] {
    font-weight: 600;
    color: var(--gray-800);
}

.note-date[b-k22s0nfvul] {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.note-content[b-k22s0nfvul] {
    padding: 1rem;
    color: var(--gray-800);
    white-space: pre-line;
}

.note-actions[b-k22s0nfvul] {
    display: flex;
    padding: 0.5rem 1rem;
    background-color: var(--gray-50);
}
/* _content/DVPROS/Components/Pages/Admin/Settings.razor.rz.scp.css */
/* DVPROS Claims Management System - Enhanced Global Styles */
/*Settings.razor.css*/
/* ===== BASE STYLES ===== */
:root[b-nino7ziiha] {
    --primary-color: #4f6df5;
    --primary-hover: #3955d8;
    --primary-light: #eef1ff;
    --secondary-color: #20a8d8;
    --success-color: #2ecc71;
    --danger-color: #f86c6b;
    --warning-color: #f8cb00;
    --info-color: #20a8d8;
    --dark-color: #3c4b64;
    --light-color: #f8f9fa;
    --body-bg: #f8fafc;
    --body-color: #333;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --sidebar-width: 280px;
    --header-height: 4rem;
    --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.08);
    --transition-speed: 0.2s;
}

html[b-nino7ziiha], body[b-nino7ziiha] {
    font-family: var(--font-family);
    background-color: var(--body-bg);
    color: var(--body-color);
    line-height: 1.5;
    font-size: 0.9375rem;
}

h1[b-nino7ziiha], h2[b-nino7ziiha], h3[b-nino7ziiha], h4[b-nino7ziiha], h5[b-nino7ziiha], h6[b-nino7ziiha] {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a[b-nino7ziiha] {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

    a:hover[b-nino7ziiha] {
        color: var(--primary-hover);
        text-decoration: none;
    }

/* ===== CUSTOM COMPONENTS ===== */

/* Buttons */
.btn[b-nino7ziiha] {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
}

.btn-sm[b-nino7ziiha] {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    border-radius: calc(var(--border-radius) - 2px);
}

.btn-lg[b-nino7ziiha] {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

.btn-primary[b-nino7ziiha] {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover[b-nino7ziiha], .btn-primary:focus[b-nino7ziiha] {
        background-color: var(--primary-hover);
        border-color: var(--primary-hover);
    }

.btn-outline-primary[b-nino7ziiha] {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-outline-primary:hover[b-nino7ziiha], .btn-outline-primary:focus[b-nino7ziiha] {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

.btn-outline-secondary[b-nino7ziiha] {
    color: var(--gray-600);
    border-color: var(--gray-400);
}

    .btn-outline-secondary:hover[b-nino7ziiha], .btn-outline-secondary:focus[b-nino7ziiha] {
        color: var(--gray-800);
        background-color: var(--gray-200);
        border-color: var(--gray-400);
    }

.btn-danger[b-nino7ziiha] {
    background-color: var(--danger-color);
    border-color: var(--danger-color);
}

.btn-success[b-nino7ziiha] {
    background-color: var(--success-color);
    border-color: var(--success-color);
}

.btn-info[b-nino7ziiha] {
    background-color: var(--info-color);
    border-color: var(--info-color);
}

.btn-warning[b-nino7ziiha] {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
}

/* Cards */
.card[b-nino7ziiha] {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: none;
    margin-bottom: 1.5rem;
}

.card-header[b-nino7ziiha] {
    background-color: #fff;
    border-bottom: 1px solid var(--gray-200);
    padding: 1.25rem 1.5rem;
}

    .card-header:first-child[b-nino7ziiha] {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }

.card-body[b-nino7ziiha] {
    padding: 1.5rem;
}

.card-footer[b-nino7ziiha] {
    background-color: #fff;
    border-top: 1px solid var(--gray-200);
    padding: 1.25rem 1.5rem;
}

    .card-footer:last-child[b-nino7ziiha] {
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }

/* Forms */
.form-control[b-nino7ziiha], .form-select[b-nino7ziiha] {
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-300);
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

    .form-control:focus[b-nino7ziiha], .form-select:focus[b-nino7ziiha] {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.25rem rgba(79, 109, 245, 0.15);
    }

.form-label[b-nino7ziiha] {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.form-text[b-nino7ziiha] {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.input-group[b-nino7ziiha] {
    border-radius: var(--border-radius);
}

.input-group-text[b-nino7ziiha] {
    background-color: var(--gray-100);
    border-color: var(--gray-300);
}

/* Tables */
.table[b-nino7ziiha] {
    margin-bottom: 0;
}

    .table th[b-nino7ziiha] {
        font-weight: 600;
        color: var(--gray-700);
        border-top: none;
        border-bottom-width: 1px;
        padding: 1rem;
    }

    .table td[b-nino7ziiha] {
        padding: 1rem;
        vertical-align: middle;
        border-color: var(--gray-200);
    }

.table-hover tbody tr:hover[b-nino7ziiha] {
    background-color: rgba(79, 109, 245, 0.03);
}

.table-responsive[b-nino7ziiha] {
    border-radius: var(--border-radius);
    overflow: auto;
}

/* Alerts */
.alert[b-nino7ziiha] {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--box-shadow);
    padding: 1rem 1.25rem;
}

.alert-info[b-nino7ziiha] {
    background-color: #e6f7fb;
    color: #0a5c6d;
}

.alert-warning[b-nino7ziiha] {
    background-color: #fff9e6;
    color: #856404;
}

.alert-danger[b-nino7ziiha] {
    background-color: #fee6e6;
    color: #c62828;
}

.alert-success[b-nino7ziiha] {
    background-color: #e6f7ed;
    color: #0f5132;
}

/* Badges */
.badge[b-nino7ziiha] {
    font-weight: 500;
    padding: 0.35em 0.65em;
    border-radius: 50rem;
}

.bg-primary[b-nino7ziiha] {
    background-color: var(--primary-color) !important;
}

.bg-secondary[b-nino7ziiha] {
    background-color: var(--gray-600) !important;
}

.bg-success[b-nino7ziiha] {
    background-color: var(--success-color) !important;
}

.bg-danger[b-nino7ziiha] {
    background-color: var(--danger-color) !important;
}

.bg-warning[b-nino7ziiha] {
    background-color: var(--warning-color) !important;
}

.bg-info[b-nino7ziiha] {
    background-color: var(--info-color) !important;
}

.bg-light[b-nino7ziiha] {
    background-color: var(--gray-100) !important;
}

.bg-dark[b-nino7ziiha] {
    background-color: var(--gray-800) !important;
}

/* User avatar styling */
.user-avatar-sm[b-nino7ziiha] {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-initials[b-nino7ziiha] {
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
}

/* Pagination */
.pagination-controls[b-nino7ziiha] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: white;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    border-top: 1px solid var(--gray-200);
}

.pagination-info[b-nino7ziiha] {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.pagination-buttons .btn[b-nino7ziiha] {
    margin: 0 0.25rem;
}

/* Loading spinner */
.loading-spinner[b-nino7ziiha] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.spinner-border[b-nino7ziiha] {
    color: var(--primary-color);
}

.loading-text[b-nino7ziiha] {
    margin-top: 1rem;
    color: var(--gray-600);
    font-size: 1rem;
}

/* Empty state styling */
.empty-state[b-nino7ziiha] {
    text-align: center;
    padding: 3rem 0;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.empty-state-icon[b-nino7ziiha] {
    font-size: 3rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.empty-state-message[b-nino7ziiha] {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.empty-state-description[b-nino7ziiha] {
    color: var(--gray-600);
    max-width: 400px;
    margin: 0 auto;
}

/* ===== UTILITIES ===== */

/* Text colors */
.text-primary[b-nino7ziiha] {
    color: var(--primary-color) !important;
}

.text-secondary[b-nino7ziiha] {
    color: var(--gray-600) !important;
}

.text-success[b-nino7ziiha] {
    color: var(--success-color) !important;
}

.text-danger[b-nino7ziiha] {
    color: var(--danger-color) !important;
}

.text-warning[b-nino7ziiha] {
    color: var(--warning-color) !important;
}

.text-info[b-nino7ziiha] {
    color: var(--info-color) !important;
}

.text-muted[b-nino7ziiha] {
    color: var(--gray-600) !important;
}

.text-dark[b-nino7ziiha] {
    color: var(--gray-800) !important;
}

.text-light[b-nino7ziiha] {
    color: var(--gray-100) !important;
}

/* Background utilities */
.bg-white[b-nino7ziiha] {
    background-color: #fff !important;
}

.bg-light[b-nino7ziiha] {
    background-color: var(--gray-100) !important;
}

.bg-primary-light[b-nino7ziiha] {
    background-color: var(--primary-light) !important;
}

/* Border utilities */
.border[b-nino7ziiha] {
    border: 1px solid var(--gray-200) !important;
}

.border-top[b-nino7ziiha] {
    border-top: 1px solid var(--gray-200) !important;
}

.border-bottom[b-nino7ziiha] {
    border-bottom: 1px solid var(--gray-200) !important;
}

.border-start[b-nino7ziiha] {
    border-left: 1px solid var(--gray-200) !important;
}

.border-end[b-nino7ziiha] {
    border-right: 1px solid var(--gray-200) !important;
}

.border-0[b-nino7ziiha] {
    border: 0 !important;
}

/* Shadow utilities */
.shadow-sm[b-nino7ziiha] {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow[b-nino7ziiha] {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg[b-nino7ziiha] {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none[b-nino7ziiha] {
    box-shadow: none !important;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .card-body[b-nino7ziiha] {
        padding: 1rem;
    }

    .table th[b-nino7ziiha], .table td[b-nino7ziiha] {
        padding: 0.75rem;
    }

    .btn[b-nino7ziiha] {
        padding: 0.4rem 0.8rem;
    }

    h3[b-nino7ziiha] {
        font-size: 1.5rem;
    }
}

/* ===== MEDIA QUERIES ===== */
@media print {
    .sidebar[b-nino7ziiha], .top-row[b-nino7ziiha], .btn[b-nino7ziiha] {
        display: none !important;
    }

    .card[b-nino7ziiha] {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }

    body[b-nino7ziiha] {
        background-color: white !important;
    }

    .page[b-nino7ziiha] {
        display: block !important;
    }

    main[b-nino7ziiha] {
        margin-left: 0 !important;
    }
}

/* Import custom fonts - Uncomment if needed */
/*
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
*/
/* _content/DVPROS/Components/Pages/ClaimForm.razor.rz.scp.css */
/* EnhancedClaimForm.razor.css */

/* Form Sections */
.form-section[b-4yla35fgx7] {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .form-section:hover[b-4yla35fgx7] {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .form-section h5[b-4yla35fgx7] {
        color: var(--primary-color);
        margin-bottom: 1.25rem;
        font-weight: 600;
        border-bottom: 1px solid var(--gray-300);
        padding-bottom: 0.75rem;
    }

/* Input styling */
.form-control:focus[b-4yla35fgx7], .form-select:focus[b-4yla35fgx7] {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(79, 109, 245, 0.15);
}

/* VIN field styling */
input#vin[b-4yla35fgx7] {
    font-family: monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Checkbox styling */
.form-check-input:checked[b-4yla35fgx7] {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label[b-4yla35fgx7] {
    font-weight: 500;
}

/* Address container */
.address-container[b-4yla35fgx7] {
    background-color: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
}

/* Animation for loading spinner */
.spinner-border-sm[b-4yla35fgx7] {
    animation-duration: 1s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-section[b-4yla35fgx7] {
        padding: 1rem;
    }
}

/* Vehicle selector styling */
.vehicle-selector select[b-4yla35fgx7] {
    background-color: white;
}

/* Add subtle transition effects */
.form-control[b-4yla35fgx7], .form-select[b-4yla35fgx7], .btn[b-4yla35fgx7] {
    transition: all 0.2s ease-in-out;
}

.btn-primary[b-4yla35fgx7] {
    font-weight: 600;
    padding: 0.6rem 1.5rem;
}

    .btn-primary:hover[b-4yla35fgx7] {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Input group styling */
.input-group-text[b-4yla35fgx7] {
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-color: var(--primary-color);
}
/* _content/DVPROS/Components/Pages/Notifications.razor.rz.scp.css */
/* Notifications.razor.css */

.notifications-list[b-w9eae7mney] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification-item[b-w9eae7mney] {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.2s ease;
    overflow: hidden;
}

    .notification-item:hover[b-w9eae7mney] {
        box-shadow: var(--box-shadow-lg);
        transform: translateY(-2px);
    }

    .notification-item.unread[b-w9eae7mney] {
        border-left: 4px solid var(--primary-color);
    }

.notification-icon[b-w9eae7mney] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    font-size: 1.5rem;
    padding: 1.5rem 1rem;
}

    .notification-icon.info[b-w9eae7mney] {
        background-color: rgba(79, 109, 245, 0.1);
        color: var(--primary-color);
    }

    .notification-icon.success[b-w9eae7mney] {
        background-color: rgba(46, 204, 113, 0.1);
        color: var(--success-color);
    }

    .notification-icon.warning[b-w9eae7mney] {
        background-color: rgba(248, 203, 0, 0.1);
        color: var(--warning-color);
    }

    .notification-icon.danger[b-w9eae7mney] {
        background-color: rgba(248, 108, 107, 0.1);
        color: var(--danger-color);
    }

.notification-content[b-w9eae7mney] {
    flex: 1;
    padding: 1.5rem;
}

.notification-header[b-w9eae7mney] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.notification-title[b-w9eae7mney] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.notification-meta[b-w9eae7mney] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-time[b-w9eae7mney] {
    color: var(--gray-600);
    font-size: 0.85rem;
}

.notification-badge[b-w9eae7mney] {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 0.2em 0.6em;
    border-radius: 50rem;
}

.notification-body[b-w9eae7mney] {
    color: var(--gray-700);
    margin-bottom: 1rem;
}

    .notification-body p[b-w9eae7mney] {
        margin: 0;
    }

.notification-actions[b-w9eae7mney] {
    display: flex;
    gap: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .notification-item[b-w9eae7mney] {
        flex-direction: column;
    }

    .notification-icon[b-w9eae7mney] {
        padding: 1rem;
        min-width: auto;
        width: 100%;
    }

    .notification-item.unread[b-w9eae7mney] {
        border-left: none;
        border-top: 4px solid var(--primary-color);
    }

    .notification-header[b-w9eae7mney] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .notification-actions[b-w9eae7mney] {
        flex-wrap: wrap;
    }
}

/* Filter buttons styling */
.filter-buttons[b-w9eae7mney] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .filter-buttons .btn[b-w9eae7mney] {
        border-radius: 50px;
        padding: 0.5rem 1.25rem;
        font-weight: 500;
        transition: all 0.2s ease;
    }

        .filter-buttons .btn:not(.btn-primary)[b-w9eae7mney] {
            background-color: #f8f9fa;
            color: #495057;
            border: 1px solid #e9ecef;
        }

            .filter-buttons .btn:not(.btn-primary):hover[b-w9eae7mney] {
                background-color: #e9ecef;
            }

/* Empty state styling */
.empty-state[b-w9eae7mney] {
    text-align: center;
    padding: 4rem 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.empty-state-icon[b-w9eae7mney] {
    font-size: 3rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.empty-state-message[b-w9eae7mney] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.empty-state-description[b-w9eae7mney] {
    color: var(--gray-600);
    max-width: 400px;
    margin: 0 auto;
}

/* Loading spinner */
.loading-spinner[b-w9eae7mney] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.spinner-border[b-w9eae7mney] {
    color: var(--primary-color);
    width: 3rem;
    height: 3rem;
}

.loading-text[b-w9eae7mney] {
    margin-top: 1rem;
    color: var(--gray-600);
}
