/* _content/Validiti/Components/Layout/MainLayout.razor.rz.scp.css */
/* MainLayout.razor.css - Updated to match homepage color scheme */

/* Color Variables */
:root[b-e975pw8e24] {
    --bg-primary: #FCFBF9;
    --bg-secondary: #F9F7F4;
    --bg-white: #FEFDFB;
    --teal-dark: #14B8A6;
    --teal-medium: #2DD4BF;
    --teal-light: #5EEAD4;
    --teal-lighter: #99F6E4;
    --teal-lightest: #CCFBF1;
    --teal-bg: #F0FDFB;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --border-light: rgba(204, 251, 241, 0.3);
}

.page[b-e975pw8e24] {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
    min-height: 100vh;
}

main[b-e975pw8e24] {
    flex: 1;
    background: var(--bg-primary);
}

.sidebar[b-e975pw8e24] {
    background: var(--bg-white);
    border-right: 1px solid var(--border-light);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.04);
}

.top-row[b-e975pw8e24] {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

    .top-row[b-e975pw8e24]  a, .top-row[b-e975pw8e24]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
        color: var(--text-secondary);
        font-weight: 500;
        transition: color 0.2s;
    }

        .top-row[b-e975pw8e24]  a:hover, .top-row[b-e975pw8e24]  .btn-link:hover {
            text-decoration: none;
            color: var(--teal-dark);
        }

        .top-row[b-e975pw8e24]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row[b-e975pw8e24] {
        justify-content: space-between;
        padding: 0 1rem;
    }

        .top-row[b-e975pw8e24]  a, .top-row[b-e975pw8e24]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page[b-e975pw8e24] {
        flex-direction: row;
    }

    .sidebar[b-e975pw8e24] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
        overflow-y: auto;
    }

        /* Sidebar scrollbar styling */
        .sidebar[b-e975pw8e24]::-webkit-scrollbar {
            width: 6px;
        }

        .sidebar[b-e975pw8e24]::-webkit-scrollbar-track {
            background: var(--bg-secondary);
        }

        .sidebar[b-e975pw8e24]::-webkit-scrollbar-thumb {
            background: var(--teal-lighter);
            border-radius: 3px;
        }

            .sidebar[b-e975pw8e24]::-webkit-scrollbar-thumb:hover {
                background: var(--teal-light);
            }

    .top-row[b-e975pw8e24] {
        position: sticky;
        top: 0;
        z-index: 10;
        padding: 0 2rem;
    }

        .top-row.auth[b-e975pw8e24]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-e975pw8e24], article[b-e975pw8e24] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

/* Error UI Updated */
#blazor-error-ui[b-e975pw8e24] {
    background: #FEE2E2;
    bottom: 0;
    box-shadow: 0 -1px 10px rgba(239, 68, 68, 0.2);
    display: none;
    left: 0;
    padding: 1rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-top: 2px solid #EF4444;
}

    #blazor-error-ui .dismiss[b-e975pw8e24] {
        cursor: pointer;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #EF4444;
        font-size: 1.5rem;
        font-weight: bold;
    }

    #blazor-error-ui a[b-e975pw8e24] {
        color: #EF4444;
        font-weight: 600;
        text-decoration: none;
    }

        #blazor-error-ui a:hover[b-e975pw8e24] {
            text-decoration: underline;
        }

/* Modern Glass Card Styling - Updated */
.dashboard-container[b-e975pw8e24] {
    position: relative;
    min-height: 100vh;
    padding: 24px;
    background: var(--bg-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.glass-card[b-e975pw8e24] {
    background: var(--bg-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 24px;
    transition: all 0.3s ease;
}

    .glass-card:hover[b-e975pw8e24] {
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    }

/* Additional utility classes matching your theme */
.teal-gradient[b-e975pw8e24] {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal-dark) 100%);
}

.text-teal[b-e975pw8e24] {
    color: var(--teal-dark);
}

.bg-teal-light[b-e975pw8e24] {
    background-color: var(--teal-bg);
}

.border-teal[b-e975pw8e24] {
    border-color: var(--teal-light);
}

/* Smooth transitions */
*[b-e975pw8e24] {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}
/* _content/Validiti/Components/Layout/NavMenu.razor.rz.scp.css */
/* NavMenu.razor.css - Updated to match Homepage Design */

/* Color Variables matching homepage */
:root[b-lq4ock4xfd] {
    --bg-primary: #FCFBF9;
    --bg-secondary: #F9F7F4;
    --bg-white: #FEFDFB;
    --teal-dark: #14B8A6;
    --teal-medium: #2DD4BF;
    --teal-light: #5EEAD4;
    --teal-lighter: #99F6E4;
    --teal-lightest: #CCFBF1;
    --teal-bg: #F0FDFB;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --border-light: rgba(204, 251, 241, 0.3);
}

/* Mobile Toggle Button */
.navbar-toggler[b-lq4ock4xfd] {
    appearance: none;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: 0.25rem;
    right: 1rem;
    border: 2px solid var(--teal-light);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2314B8A6' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.5rem var(--bg-white);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 0.25rem;
}

    .navbar-toggler:hover[b-lq4ock4xfd] {
        background-color: var(--teal-bg);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15);
    }

    .navbar-toggler:checked[b-lq4ock4xfd] {
        background-color: var(--teal-dark);
        border-color: var(--teal-dark);
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6L24 24M6 24L24 6'/%3e%3c/svg%3e");
    }

/* Top Navigation Bar */
.top-row[b-lq4ock4xfd] {
    height: 3.5rem;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Brand Styling */
.navbar-brand[b-lq4ock4xfd] {
    font-size: 1.375rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: var(--text-primary) !important;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: -0.5px;
}

    .navbar-brand:hover[b-lq4ock4xfd] {
        transform: translateY(-1px);
        color: var(--teal-dark) !important;
    }

.logo[b-lq4ock4xfd] {
    height: 32px;
    width: 32px;
    margin-right: 0.75rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo[b-lq4ock4xfd] {
    transform: rotate(-5deg) scale(1.05);
}

/* Navigation Container */
.nav-scrollable[b-lq4ock4xfd] {
    background: var(--bg-white);
    border-right: 1px solid var(--border-light);
}

/* Navigation Items */
.nav-item[b-lq4ock4xfd] {
    font-size: 0.9375rem;
    margin: 0.25rem 0;
}

    .nav-item:first-of-type[b-lq4ock4xfd] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-lq4ock4xfd] {
        padding-bottom: 1rem;
    }

/* Divider */
.nav-divider[b-lq4ock4xfd] {
    height: 1px;
    background: var(--border-light);
    margin: 1rem 1.5rem;
}

/* Navigation Links */
.nav-link[b-lq4ock4xfd] {
    color: var(--text-secondary) !important;
    border-radius: 10px;
    padding: 0.75rem 1rem !important;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

    .nav-link:hover[b-lq4ock4xfd] {
        color: var(--teal-dark) !important;
        background: var(--teal-bg);
        transform: translateX(4px);
    }

    .nav-link:active[b-lq4ock4xfd] {
        transform: translateX(2px);
    }

/* Icon Styling */
.nav-icon[b-lq4ock4xfd] {
    font-size: 1.125rem;
    width: 2.25rem;
    text-align: center;
    margin-right: 0.75rem;
    transition: all 0.2s ease;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-link:hover .nav-icon[b-lq4ock4xfd] {
    color: var(--teal-dark);
    transform: scale(1.1);
}

/* Active State */
.nav-link.active[b-lq4ock4xfd] {
    color: white !important;
    background: var(--teal-dark);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);
    font-weight: 600;
}

    .nav-link.active .nav-icon[b-lq4ock4xfd] {
        color: white !important;
    }

    .nav-link.active[b-lq4ock4xfd]::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--teal-light);
    }

/* Icon Colors (matching homepage style) */
.bi-speedometer2[b-lq4ock4xfd]::before {
    color: var(--teal-medium);
}

.bi-plus-circle-fill[b-lq4ock4xfd]::before {
    color: var(--teal-dark);
}

.bi-list-check[b-lq4ock4xfd]::before {
    color: var(--teal-medium);
}

.bi-building[b-lq4ock4xfd]::before {
    color: var(--text-secondary);
}

.bi-person-fill[b-lq4ock4xfd]::before {
    color: var(--text-light);
}

.bi-box-arrow-left[b-lq4ock4xfd]::before {
    color: #EF4444;
}

.bi-house-door-fill[b-lq4ock4xfd]::before {
    color: var(--teal-dark);
}

.bi-person-plus-fill[b-lq4ock4xfd]::before {
    color: var(--teal-medium);
}

.bi-box-arrow-in-right[b-lq4ock4xfd]::before {
    color: var(--teal-dark);
}

/* Active state removes custom icon colors */
.nav-link.active .nav-icon[b-lq4ock4xfd]::before {
    color: white !important;
}

/* Responsive Design */
@media (min-width: 641px) {
    .navbar-toggler[b-lq4ock4xfd] {
        display: none;
    }

    .nav-scrollable[b-lq4ock4xfd] {
        display: block;
    }

    .top-row[b-lq4ock4xfd] {
        position: sticky;
        top: 0;
        z-index: 10;
    }
}

@media (max-width: 640.98px) {
    .navbar-toggler:not(:checked) ~ .nav-scrollable[b-lq4ock4xfd] {
        display: none;
    }

    .nav-scrollable[b-lq4ock4xfd] {
        position: absolute;
        top: 3.5rem;
        left: 0;
        right: 0;
        z-index: 100;
        background: var(--bg-white);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid var(--border-light);
        max-height: calc(100vh - 3.5rem);
        overflow-y: auto;
        border-radius: 0 0 16px 16px;
    }

    .nav-item[b-lq4ock4xfd] {
        padding: 0 0.5rem;
    }
}

/* Smooth Scrollbar */
.nav-scrollable[b-lq4ock4xfd]::-webkit-scrollbar {
    width: 6px;
}

.nav-scrollable[b-lq4ock4xfd]::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.nav-scrollable[b-lq4ock4xfd]::-webkit-scrollbar-thumb {
    background: var(--teal-lighter);
    border-radius: 3px;
}

    .nav-scrollable[b-lq4ock4xfd]::-webkit-scrollbar-thumb:hover {
        background: var(--teal-light);
    }

/* Loading State */
.nav-link.loading[b-lq4ock4xfd] {
    pointer-events: none;
    opacity: 0.6;
}

    .nav-link.loading[b-lq4ock4xfd]::after {
        content: '';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        border: 2px solid var(--teal-lighter);
        border-top-color: var(--teal-dark);
        border-radius: 50%;
        animation: spin-b-lq4ock4xfd 0.8s linear infinite;
    }

@keyframes spin-b-lq4ock4xfd {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Additional hover effects for better UX */
.nav-link[b-lq4ock4xfd] {
    position: relative;
}

    .nav-link[b-lq4ock4xfd]::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 1rem;
        right: 1rem;
        height: 2px;
        background: var(--teal-dark);
        transform: scaleX(0);
        transition: transform 0.2s ease;
    }

    .nav-link:hover[b-lq4ock4xfd]::after {
        transform: scaleX(1);
    }

    .nav-link.active[b-lq4ock4xfd]::after {
        display: none;
    }
/* _content/Validiti/Components/Pages/AgentDashboard.razor.rz.scp.css */
/* Modern Dashboard - Apple Liquid Glass Design System - Enhanced Professional Theme */

/* Base container */
.dashboard-container[b-ahtm7kl9lg] {
    position: relative;
    min-height: 100vh;
    padding: 24px;
    background: var(--light-bg);
    font-family: var(--font-family);
}

/* Animated background - Subtle version */
.animated-bg[b-ahtm7kl9lg] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb[b-ahtm7kl9lg] {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float-b-ahtm7kl9lg 30s infinite ease-in-out;
}

.orb-1[b-ahtm7kl9lg] {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2[b-ahtm7kl9lg] {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.orb-3[b-ahtm7kl9lg] {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-purple) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float-b-ahtm7kl9lg {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Glass card effect */
.glass-card[b-ahtm7kl9lg] {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: 24px;
    transition: all 300ms ease;
}

    .glass-card:hover[b-ahtm7kl9lg] {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

/* Modern alert */
.modern-alert[b-ahtm7kl9lg] {
    position: fixed;
    top: 24px;
    right: 24px;
    max-width: 400px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    animation: slideIn-b-ahtm7kl9lg 0.3s ease-out;
}

    .modern-alert.success[b-ahtm7kl9lg] {
        border-left: 4px solid var(--vibrant-green);
    }

    .modern-alert.error[b-ahtm7kl9lg] {
        border-left: 4px solid var(--vibrant-red);
    }

.alert-content[b-ahtm7kl9lg] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.alert-close[b-ahtm7kl9lg] {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: color 150ms ease;
}

    .alert-close:hover[b-ahtm7kl9lg] {
        color: var(--text-primary);
    }

@keyframes slideIn-b-ahtm7kl9lg {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Header section */
.dashboard-header[b-ahtm7kl9lg] {
    margin-bottom: 48px;
}

.header-content[b-ahtm7kl9lg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.header-title h1[b-ahtm7kl9lg] {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle[b-ahtm7kl9lg] {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 4px 0 0;
}

/* Primary action button - Enhanced */
.primary-action-btn[b-ahtm7kl9lg] {
    background: linear-gradient(135deg, var(--vibrant-blue) 0%, var(--vibrant-purple) 100%);
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 300ms ease;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
    text-decoration: none;
}

    .primary-action-btn:hover[b-ahtm7kl9lg] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
    }

/* Loading state */
.loading-container[b-ahtm7kl9lg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.loading-spinner[b-ahtm7kl9lg] {
    position: relative;
    width: 60px;
    height: 60px;
}

.spinner-ring[b-ahtm7kl9lg] {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--border-light);
    border-top-color: var(--vibrant-blue);
    border-radius: 50%;
    animation: spin-b-ahtm7kl9lg 1s linear infinite;
}

@keyframes spin-b-ahtm7kl9lg {
    to {
        transform: rotate(360deg);
    }
}

.loading-text[b-ahtm7kl9lg] {
    margin-top: 24px;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Statistics grid */
.stats-grid[b-ahtm7kl9lg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.stat-card[b-ahtm7kl9lg] {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--card-bg) !important;
    padding: 28px !important;
}

    .stat-card[b-ahtm7kl9lg]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-blue), var(--primary-teal));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .stat-card:hover[b-ahtm7kl9lg]::before {
        opacity: 1;
    }

.stat-icon[b-ahtm7kl9lg] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.icon-blue[b-ahtm7kl9lg] {
    background: linear-gradient(135deg, var(--vibrant-blue) 0%, #0051D5 100%);
    color: white;
}

.icon-green[b-ahtm7kl9lg] {
    background: linear-gradient(135deg, var(--vibrant-green) 0%, #00C851 100%);
    color: white;
}

.icon-purple[b-ahtm7kl9lg] {
    background: linear-gradient(135deg, var(--vibrant-purple) 0%, #7C3AED 100%);
    color: white;
}

.icon-orange[b-ahtm7kl9lg] {
    background: linear-gradient(135deg, var(--vibrant-orange) 0%, #FF6B35 100%);
    color: white;
}

.stat-content[b-ahtm7kl9lg] {
    flex: 1;
}

.stat-value[b-ahtm7kl9lg] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label[b-ahtm7kl9lg] {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 500;
}

.stat-trend[b-ahtm7kl9lg] {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 2px;
}

    .stat-trend.positive[b-ahtm7kl9lg] {
        color: var(--vibrant-green);
        font-weight: 600;
    }

/* Content grid */
.content-grid[b-ahtm7kl9lg] {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
}

@media (max-width: 1200px) {
    .content-grid[b-ahtm7kl9lg] {
        grid-template-columns: 1fr;
    }
}

/* Requests card */
.requests-card[b-ahtm7kl9lg] {
    min-height: 500px;
}

.card-header[b-ahtm7kl9lg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

    .card-header h2[b-ahtm7kl9lg] {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-primary);
        margin: 0;
    }

.view-all-link[b-ahtm7kl9lg] {
    color: var(--vibrant-blue);
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 150ms ease;
    font-weight: 500;
}

    .view-all-link:hover[b-ahtm7kl9lg] {
        gap: 8px;
    }

/* Requests list */
.requests-list[b-ahtm7kl9lg] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.request-item[b-ahtm7kl9lg] {
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    transition: all 300ms ease;
    position: relative;
    overflow: hidden;
}

    .request-item:hover[b-ahtm7kl9lg] {
        background: var(--card-bg);
        transform: translateX(4px);
        box-shadow: var(--shadow-sm);
        border-color: var(--primary-blue);
    }

    .request-item[b-ahtm7kl9lg]::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--primary-blue);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .request-item:hover[b-ahtm7kl9lg]::before {
        opacity: 1;
    }

.request-main[b-ahtm7kl9lg] {
    flex: 1;
}

.request-header[b-ahtm7kl9lg] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

    .request-header h4[b-ahtm7kl9lg] {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary);
        margin: 0;
    }

/* Status badges - Enhanced */
.status-badge[b-ahtm7kl9lg] {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-completed[b-ahtm7kl9lg] {
    background: var(--vibrant-green);
    color: white;
}

.status-progress[b-ahtm7kl9lg] {
    background: var(--vibrant-blue);
    color: white;
}

.status-pending[b-ahtm7kl9lg] {
    background: var(--vibrant-orange);
    color: white;
}

.status-documents[b-ahtm7kl9lg] {
    background: var(--vibrant-purple);
    color: white;
}

.status-rejected[b-ahtm7kl9lg] {
    background: var(--vibrant-red);
    color: white;
}

.status-expired[b-ahtm7kl9lg] {
    background: #8E8E93;
    color: white;
}

/* Request details */
.request-details[b-ahtm7kl9lg] {
    display: flex;
    gap: 24px;
}

.detail-item[b-ahtm7kl9lg] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

    .detail-item i[b-ahtm7kl9lg] {
        color: var(--primary-blue);
        font-size: 0.75rem;
    }

/* Progress ring */
.request-progress[b-ahtm7kl9lg] {
    position: relative;
}

.progress-ring[b-ahtm7kl9lg] {
    position: relative;
}

    .progress-ring svg[b-ahtm7kl9lg] {
        transform: rotate(-90deg);
    }

.progress-bg[b-ahtm7kl9lg] {
    fill: none;
    stroke: var(--border-light);
    stroke-width: 4;
}

.progress-fill[b-ahtm7kl9lg] {
    fill: none;
    stroke: url(#progressGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 157;
    transition: stroke-dashoffset 500ms ease;
}

.progress-text[b-ahtm7kl9lg] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Reminder button */
.reminder-btn[b-ahtm7kl9lg] {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 150ms ease;
    color: var(--vibrant-orange);
}

    .reminder-btn:hover[b-ahtm7kl9lg] {
        background: var(--vibrant-orange);
        color: white;
        transform: scale(1.1);
    }

    .reminder-btn:disabled[b-ahtm7kl9lg] {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* Empty state */
.empty-state[b-ahtm7kl9lg] {
    text-align: center;
    padding: 48px;
}

.empty-icon[b-ahtm7kl9lg] {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(107, 155, 209, 0.1), rgba(114, 199, 204, 0.1));
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
}

.empty-state h3[b-ahtm7kl9lg] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.empty-state p[b-ahtm7kl9lg] {
    color: var(--text-secondary);
    margin: 0 0 24px;
}

/* Side panel */
.side-panel[b-ahtm7kl9lg] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Quick actions - Enhanced */
.quick-actions h3[b-ahtm7kl9lg] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 16px;
}

.action-grid[b-ahtm7kl9lg] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.action-btn[b-ahtm7kl9lg] {
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 150ms ease;
    color: var(--text-primary);
}

    .action-btn:hover[b-ahtm7kl9lg] {
        background: var(--card-bg);
        color: var(--vibrant-blue);
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm);
        border-color: var(--vibrant-blue);
    }

    .action-btn i[b-ahtm7kl9lg] {
        font-size: 1.25rem;
    }

    .action-btn span[b-ahtm7kl9lg] {
        font-size: 0.75rem;
        font-weight: 500;
    }

/* Postcode validator - Enhanced */
.postcode-validator h3[b-ahtm7kl9lg] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.validator-input[b-ahtm7kl9lg] {
    display: flex;
    gap: 8px;
}

.modern-input[b-ahtm7kl9lg] {
    flex: 1;
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 150ms ease;
}

    .modern-input:focus[b-ahtm7kl9lg] {
        outline: none;
        border-color: var(--vibrant-purple);
        background: var(--card-bg);
        box-shadow: 0 0 0 3px rgba(88, 86, 214, 0.1);
    }

.validate-btn[b-ahtm7kl9lg] {
    background: var(--vibrant-purple);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0 24px;
    cursor: pointer;
    transition: all 150ms ease;
}

    .validate-btn:hover[b-ahtm7kl9lg] {
        background: var(--vibrant-blue);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(88, 86, 214, 0.3);
    }

    .validate-btn:disabled[b-ahtm7kl9lg] {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* Validation result */
.validation-result[b-ahtm7kl9lg] {
    margin-top: 16px;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeIn-b-ahtm7kl9lg 0.3s ease;
}

    .validation-result.valid[b-ahtm7kl9lg] {
        background: rgba(52, 199, 89, 0.1);
        border: 1px solid rgba(52, 199, 89, 0.3);
        color: var(--vibrant-green);
    }

    .validation-result.invalid[b-ahtm7kl9lg] {
        background: rgba(255, 59, 48, 0.1);
        border: 1px solid rgba(255, 59, 48, 0.3);
        color: var(--vibrant-red);
    }

.result-content strong[b-ahtm7kl9lg] {
    display: block;
    font-weight: 600;
}

.result-content small[b-ahtm7kl9lg] {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Checklist - Enhanced */
.checklist h3[b-ahtm7kl9lg] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 16px;
}

.checklist-items[b-ahtm7kl9lg] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checklist-item[b-ahtm7kl9lg] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0.75rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 200ms ease;
}

    .checklist-item:hover[b-ahtm7kl9lg] {
        background: linear-gradient(135deg, rgba(107, 155, 209, 0.05), rgba(114, 199, 204, 0.05));
        transform: translateX(4px);
    }

.item-icon[b-ahtm7kl9lg] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--vibrant-green) 0%, #00C851 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(52, 199, 89, 0.2);
}

.item-content h4[b-ahtm7kl9lg] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.item-content p[b-ahtm7kl9lg] {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 2px 0 0;
}

/* Primary button */
.primary-btn[b-ahtm7kl9lg] {
    background: linear-gradient(135deg, var(--vibrant-blue) 0%, var(--vibrant-purple) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 300ms ease;
    text-decoration: none;
}

    .primary-btn:hover[b-ahtm7kl9lg] {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
    }

/* Animations */
@keyframes fadeIn-b-ahtm7kl9lg {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in[b-ahtm7kl9lg] {
    animation: fadeIn-b-ahtm7kl9lg 0.3s ease;
}

/* Profile setup card */
.profile-setup[b-ahtm7kl9lg] {
    max-width: 500px;
    margin: 48px auto;
    text-align: center;
}

.card-icon[b-ahtm7kl9lg] {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--vibrant-blue) 0%, var(--vibrant-purple) 100%);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.profile-setup h3[b-ahtm7kl9lg] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.profile-setup p[b-ahtm7kl9lg] {
    color: var(--text-secondary);
    margin: 0 0 24px;
}

/* Responsive design */
@media (max-width: 768px) {
    .dashboard-container[b-ahtm7kl9lg] {
        padding: 16px;
    }

    .header-title h1[b-ahtm7kl9lg] {
        font-size: 2rem;
    }

    .stats-grid[b-ahtm7kl9lg] {
        grid-template-columns: 1fr;
    }

    .action-grid[b-ahtm7kl9lg] {
        grid-template-columns: 1fr;
    }

    .request-item[b-ahtm7kl9lg] {
        flex-direction: column;
        align-items: flex-start;
    }

    .request-progress[b-ahtm7kl9lg] {
        align-self: flex-end;
    }
}

/* Print styles */
@media print {
    .animated-bg[b-ahtm7kl9lg],
    .primary-action-btn[b-ahtm7kl9lg],
    .action-btn[b-ahtm7kl9lg],
    .reminder-btn[b-ahtm7kl9lg],
    .validate-btn[b-ahtm7kl9lg] {
        display: none;
    }

    .glass-card[b-ahtm7kl9lg] {
        background: white;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
/* _content/Validiti/Components/Pages/CreateRequest.razor.rz.scp.css */
/* Create Request Page - Modern Glass Morphism Design */

/* Container */
.liquid-container[b-slvy4covnk] {
    position: relative;
    min-height: 100vh;
    padding: 24px;
    background: var(--light-bg);
    font-family: var(--font-family);
}

/* Animated Background */
.bg-decoration[b-slvy4covnk] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb[b-slvy4covnk] {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float-b-slvy4covnk 30s infinite ease-in-out;
}

.orb-1[b-slvy4covnk] {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2[b-slvy4covnk] {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.orb-3[b-slvy4covnk] {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-purple) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float-b-slvy4covnk {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Glass Header */
.glass-header[b-slvy4covnk] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    margin: -24px -24px 48px;
    padding: 24px;
}

.header-inner[b-slvy4covnk] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.header-left h1[b-slvy4covnk] {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle[b-slvy4covnk] {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 4px 0 0;
}

/* Breadcrumb */
.breadcrumb[b-slvy4covnk] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.breadcrumb-link[b-slvy4covnk] {
    color: var(--vibrant-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

    .breadcrumb-link:hover[b-slvy4covnk] {
        color: var(--primary-dark);
    }

.breadcrumb-separator[b-slvy4covnk] {
    color: var(--text-muted);
}

.breadcrumb-current[b-slvy4covnk] {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Content */
.content-center[b-slvy4covnk] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    padding: var(--spacing-6);
    position: relative;
    z-index: 1;
}

.main-content[b-slvy4covnk] {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Glass Cards */
.glass-card[b-slvy4covnk] {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 32px;
    transition: all 300ms ease;
}

    .glass-card:hover[b-slvy4covnk] {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

/* Profile Required Card */
.profile-required[b-slvy4covnk] {
    text-align: center;
    max-width: 400px;
    padding: 48px;
}

.icon-container[b-slvy4covnk] {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

    .icon-container.warning[b-slvy4covnk] {
        background: linear-gradient(135deg, var(--vibrant-orange) 0%, #FF6B35 100%);
        color: white;
        box-shadow: 0 4px 16px rgba(255, 149, 0, 0.3);
    }

.profile-required h2[b-slvy4covnk] {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--text-primary);
}

.profile-required p[b-slvy4covnk] {
    color: var(--text-secondary);
    margin: 0 0 24px;
}

/* Progress Container */
.progress-container[b-slvy4covnk] {
    margin-bottom: 48px;
}

.progress-track[b-slvy4covnk] {
    height: 4px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
}

.progress-fill[b-slvy4covnk] {
    height: 100%;
    background: linear-gradient(90deg, var(--vibrant-blue) 0%, var(--vibrant-purple) 100%);
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.progress-steps[b-slvy4covnk] {
    display: flex;
    justify-content: space-between;
}

.progress-step[b-slvy4covnk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: var(--transition-normal);
}

    .progress-step.active[b-slvy4covnk] {
        opacity: 1;
    }

.step-circle[b-slvy4covnk] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition-normal);
}

.progress-step.active .step-circle[b-slvy4covnk] {
    background: linear-gradient(135deg, var(--vibrant-blue) 0%, var(--vibrant-purple) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.progress-step.completed .step-circle[b-slvy4covnk] {
    background: var(--vibrant-green);
    color: white;
}

.step-label[b-slvy4covnk] {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Form Layout */
.form-container[b-slvy4covnk] {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
}

.form-card[b-slvy4covnk] {
    padding: 40px;
}

/* Form Steps */
.form-step[b-slvy4covnk] {
    display: none;
    animation: fadeIn-b-slvy4covnk 0.3s ease-out;
}

    .form-step.active[b-slvy4covnk] {
        display: block;
    }

@keyframes fadeIn-b-slvy4covnk {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header[b-slvy4covnk] {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.step-icon[b-slvy4covnk] {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--vibrant-blue) 0%, var(--vibrant-purple) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.step-header h3[b-slvy4covnk] {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.step-header p[b-slvy4covnk] {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 4px 0 0;
}

/* Form Elements */
.form-section[b-slvy4covnk] {
    margin-bottom: 32px;
}

/* Property Details Section - Enhanced */
.liquid-container .form-section .form-grid[b-slvy4covnk] {
    background: rgba(248, 249, 250, 0.8) !important;
    padding: 20px !important;
    border-radius: 12px !important;
    margin-top: 20px !important;
    border: 1px solid var(--border-light) !important;
}

/* Select Options Styling */
.liquid-container select option[b-slvy4covnk] {
    padding: 8px !important;
    background: white !important;
    color: var(--text-primary) !important;
}

    .liquid-container select option:checked[b-slvy4covnk] {
        background: var(--vibrant-blue) !important;
        color: white !important;
    }

.form-grid[b-slvy4covnk] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group[b-slvy4covnk] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label[b-slvy4covnk] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.optional[b-slvy4covnk] {
    color: var(--text-muted);
    font-weight: 400;
}

/* Modern Input Fields - More Specific Selectors */
.liquid-container .input-field[b-slvy4covnk],
.liquid-container input[type="text"][b-slvy4covnk],
.liquid-container input[type="email"][b-slvy4covnk],
.liquid-container input[type="tel"][b-slvy4covnk],
.liquid-container input[type="number"][b-slvy4covnk],
.liquid-container textarea[b-slvy4covnk],
.liquid-container select[b-slvy4covnk] {
    padding: 16px !important;
    background: white !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-family: var(--font-family) !important;
    font-weight: 400 !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06) !important;
    outline: none !important;
    width: 100% !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: none !important;
}

    /* Ensure number inputs don't show spinners */
    .liquid-container input[type="number"][b-slvy4covnk]::-webkit-inner-spin-button,
    .liquid-container input[type="number"][b-slvy4covnk]::-webkit-outer-spin-button {
        -webkit-appearance: none !important;
        margin: 0 !important;
    }

.liquid-container input[type="number"][b-slvy4covnk] {
    -moz-appearance: textfield !important;
}

.liquid-container .input-field:hover[b-slvy4covnk],
.liquid-container input:hover[b-slvy4covnk],
.liquid-container textarea:hover[b-slvy4covnk],
.liquid-container select:hover[b-slvy4covnk] {
    border-color: rgba(88, 86, 214, 0.4) !important;
    background: white !important;
    box-shadow: 0 2px 8px rgba(88, 86, 214, 0.08) !important;
}

.liquid-container .input-field:focus[b-slvy4covnk],
.liquid-container input:focus[b-slvy4covnk],
.liquid-container textarea:focus[b-slvy4covnk],
.liquid-container select:focus[b-slvy4covnk] {
    border-color: var(--vibrant-purple) !important;
    background: white !important;
    box-shadow: 0 0 0 3px rgba(88, 86, 214, 0.1), 0 2px 8px rgba(88, 86, 214, 0.08) !important;
}

.liquid-container .input-field[b-slvy4covnk]::placeholder,
.liquid-container input[b-slvy4covnk]::placeholder,
.liquid-container textarea[b-slvy4covnk]::placeholder {
    color: var(--text-muted) !important;
    opacity: 0.6 !important;
}

/* Ensure placeholder text doesn't overlap with prefix */
.liquid-container .input-prefix-container input[b-slvy4covnk]::placeholder {
    color: transparent !important;
}

.liquid-container .input-prefix-container input:focus[b-slvy4covnk]::placeholder,
.liquid-container .input-prefix-container input:not(:placeholder-shown)[b-slvy4covnk]::placeholder {
    color: var(--text-muted) !important;
    opacity: 0.6 !important;
}

/* Textarea specific */
textarea[b-slvy4covnk] {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

/* Select dropdown styling */
select[b-slvy4covnk] {
    cursor: pointer;
    padding-right: 48px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
}

    select[b-slvy4covnk]::-ms-expand {
        display: none;
    }

/* Search Container */
.search-container[b-slvy4covnk] {
    position: relative;
    display: flex;
}

.search-input[b-slvy4covnk] {
    padding-right: 60px;
}

.search-button[b-slvy4covnk] {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--vibrant-blue) 0%, var(--vibrant-purple) 100%);
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

    .search-button:hover:not(:disabled)[b-slvy4covnk] {
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
    }

    .search-button:disabled[b-slvy4covnk] {
        opacity: 0.6;
        cursor: not-allowed;
    }

/* Toggle Manual */
.toggle-manual[b-slvy4covnk] {
    background: none;
    border: none;
    color: var(--vibrant-blue);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: var(--transition-fast);
}

    .toggle-manual:hover[b-slvy4covnk] {
        color: var(--vibrant-purple);
    }

/* Manual Address Section */
.manual-address-section[b-slvy4covnk] {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

/* Input Prefix */
.input-prefix-container[b-slvy4covnk] {
    position: relative;
}

.input-prefix[b-slvy4covnk] {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-weight: 500;
    pointer-events: none;
}

.input-field.with-prefix[b-slvy4covnk] {
    padding-left: 32px;
}

/* Field Hints & Errors */
.field-hint[b-slvy4covnk] {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.field-error[b-slvy4covnk] {
    font-size: 0.75rem;
    color: var(--vibrant-red);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Agency Agreement Section */
.agency-agreement-section[b-slvy4covnk] {
    margin: 32px 0;
    padding: 32px;
    background: linear-gradient(135deg, rgba(88, 86, 214, 0.03), rgba(0, 122, 255, 0.03));
    border-radius: 16px;
    border: 1px solid rgba(88, 86, 214, 0.1);
}

.section-title[b-slvy4covnk] {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.agreement-upload-area[b-slvy4covnk] {
    margin-bottom: 16px;
}

.upload-label[b-slvy4covnk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px dashed rgba(88, 86, 214, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .upload-label:hover[b-slvy4covnk] {
        background: rgba(88, 86, 214, 0.05);
        border-color: var(--vibrant-purple);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(88, 86, 214, 0.1);
    }

.upload-icon[b-slvy4covnk] {
    font-size: 3rem;
    color: var(--vibrant-purple);
    margin-bottom: 16px;
}

.upload-text[b-slvy4covnk] {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.upload-hint[b-slvy4covnk] {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.checkbox-group[b-slvy4covnk] {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .checkbox-group input[type="checkbox"][b-slvy4covnk] {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .checkbox-group label[b-slvy4covnk] {
        cursor: pointer;
        font-size: 0.95rem;
        color: var(--text-secondary);
    }

.agreement-uploaded[b-slvy4covnk] {
    background: rgba(52, 199, 89, 0.05);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(52, 199, 89, 0.2);
}

.uploaded-file[b-slvy4covnk] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.file-icon[b-slvy4covnk] {
    font-size: 2.5rem;
    color: #dc3545;
}

.file-info[b-slvy4covnk] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.file-name[b-slvy4covnk] {
    font-weight: 500;
    color: var(--text-primary);
}

.file-size[b-slvy4covnk] {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.file-actions[b-slvy4covnk] {
    display: flex;
    gap: 8px;
}

.btn-icon[b-slvy4covnk] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-icon:hover[b-slvy4covnk] {
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .btn-icon.btn-danger:hover[b-slvy4covnk] {
        background: var(--vibrant-red);
        color: white;
        border-color: var(--vibrant-red);
    }

.signature-position-info[b-slvy4covnk],
.signature-position-warning[b-slvy4covnk] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.875rem;
}

.signature-position-info[b-slvy4covnk] {
    background: rgba(52, 199, 89, 0.1);
    color: var(--vibrant-green);
}

.signature-position-warning[b-slvy4covnk] {
    background: rgba(255, 149, 0, 0.1);
    color: var(--vibrant-orange);
}

.btn-link[b-slvy4covnk] {
    background: none;
    border: none;
    color: var(--vibrant-blue);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.875rem;
    margin-left: 8px;
}

/* Summary Card */
.summary-card[b-slvy4covnk] {
    background: linear-gradient(135deg, rgba(107, 155, 209, 0.05), rgba(114, 199, 204, 0.05));
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
}

    .summary-card h4[b-slvy4covnk] {
        font-size: 1.125rem;
        font-weight: 600;
        margin: 0 0 20px;
        color: var(--text-primary);
    }

.summary-grid[b-slvy4covnk] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.summary-item[b-slvy4covnk] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-label[b-slvy4covnk] {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.summary-value[b-slvy4covnk] {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Text Colors */
.text-success[b-slvy4covnk] {
    color: var(--vibrant-green);
}

.text-warning[b-slvy4covnk] {
    color: var(--vibrant-orange);
}

.text-muted[b-slvy4covnk] {
    color: var(--text-muted);
}

/* Alerts */
.alert[b-slvy4covnk] {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.alert-error[b-slvy4covnk] {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.2);
    color: var(--vibrant-red);
}

.alert-success[b-slvy4covnk] {
    background: rgba(52, 199, 89, 0.1);
    border: 1px solid rgba(52, 199, 89, 0.2);
    color: var(--vibrant-green);
}

.alert-close[b-slvy4covnk] {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 4px;
    opacity: 0.6;
    transition: var(--transition-fast);
}

    .alert-close:hover[b-slvy4covnk] {
        opacity: 1;
    }

/* Buttons */
.btn-primary[b-slvy4covnk],
.btn-secondary[b-slvy4covnk] {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 300ms ease;
    text-decoration: none;
}

.btn-primary[b-slvy4covnk] {
    background: linear-gradient(135deg, var(--vibrant-blue) 0%, var(--vibrant-purple) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
}

    .btn-primary:hover:not(:disabled)[b-slvy4covnk] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
    }

.btn-secondary[b-slvy4covnk] {
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

    .btn-secondary:hover:not(:disabled)[b-slvy4covnk] {
        background: var(--gray-50);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .btn-primary:disabled[b-slvy4covnk],
    .btn-secondary:disabled[b-slvy4covnk] {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

.btn-submit[b-slvy4covnk] {
    min-width: 160px;
    justify-content: center;
}

/* Form Navigation */
.form-navigation[b-slvy4covnk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

/* Spinner */
.spinner[b-slvy4covnk] {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin-b-slvy4covnk 0.8s linear infinite;
}

@keyframes spin-b-slvy4covnk {
    to {
        transform: rotate(360deg);
    }
}

/* Info Panel */
.info-panel[b-slvy4covnk] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card[b-slvy4covnk] {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 24px;
    transition: all 300ms ease;
}

    .info-card:hover[b-slvy4covnk] {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    .info-card h4[b-slvy4covnk] {
        font-size: 1.125rem;
        font-weight: 600;
        margin: 0 0 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--text-primary);
    }

    .info-card p[b-slvy4covnk] {
        font-size: 0.875rem;
        color: var(--text-secondary);
        line-height: 1.6;
        margin: 0 0 12px;
    }

/* Checklist */
.checklist[b-slvy4covnk] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .checklist li[b-slvy4covnk] {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.875rem;
        color: var(--text-primary);
        padding: 8px 12px;
        background: rgba(52, 199, 89, 0.05);
        border-radius: 8px;
        transition: all 200ms ease;
    }

        .checklist li:hover[b-slvy4covnk] {
            background: rgba(52, 199, 89, 0.1);
            transform: translateX(4px);
        }

    .checklist i[b-slvy4covnk] {
        color: var(--vibrant-green);
        font-size: 1rem;
    }

/* PDF Preview Modal */
.modal-backdrop[b-slvy4covnk] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.pdf-preview-modal[b-slvy4covnk] {
    width: 90%;
    max-width: 800px;
    height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-content[b-slvy4covnk] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header[b-slvy4covnk] {
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .modal-header h3[b-slvy4covnk] {
        font-size: 1.25rem;
        font-weight: 600;
        margin: 0;
        color: var(--text-primary);
    }

.modal-close[b-slvy4covnk] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .modal-close:hover[b-slvy4covnk] {
        background: rgba(0, 0, 0, 0.1);
    }

.modal-body[b-slvy4covnk] {
    flex: 1;
    padding: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pdf-instructions[b-slvy4covnk] {
    background: rgba(0, 122, 255, 0.05);
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--vibrant-blue);
    font-size: 0.875rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdf-viewer[b-slvy4covnk] {
    flex: 1;
    background: #f0f0f0;
    border-radius: 8px;
    position: relative;
    cursor: crosshair;
    overflow: auto;
}

.signature-marker[b-slvy4covnk] {
    position: absolute;
    transform: translate(-50%, -50%);
    background: rgba(88, 86, 214, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(88, 86, 214, 0.3);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse-b-slvy4covnk 2s ease-in-out infinite;
}

@keyframes pulse-b-slvy4covnk {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.modal-footer[b-slvy4covnk] {
    padding: 24px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .form-container[b-slvy4covnk] {
        grid-template-columns: 1fr;
    }

    .info-panel[b-slvy4covnk] {
        order: -1;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .liquid-container[b-slvy4covnk] {
        padding: 16px;
    }

    .glass-header[b-slvy4covnk] {
        margin: -16px -16px 32px;
        padding: 16px;
    }

    .header-inner[b-slvy4covnk] {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-left h1[b-slvy4covnk] {
        font-size: 2rem;
    }

    .form-card[b-slvy4covnk] {
        padding: 24px;
    }

    .form-navigation[b-slvy4covnk] {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .btn-primary[b-slvy4covnk],
    .btn-secondary[b-slvy4covnk] {
        width: 100%;
        justify-content: center;
    }

    .info-panel[b-slvy4covnk] {
        display: flex;
        flex-direction: column;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *[b-slvy4covnk],
    *[b-slvy4covnk]::before,
    *[b-slvy4covnk]::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .bg-decoration[b-slvy4covnk],
    .btn-primary[b-slvy4covnk],
    .btn-secondary[b-slvy4covnk],
    .search-button[b-slvy4covnk],
    .toggle-manual[b-slvy4covnk] {
        display: none;
    }

    .glass-card[b-slvy4covnk] {
        background: white;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* PDF Preview Modal - Additional Styles */

/* PDF Navigation */
.pdf-navigation[b-slvy4covnk] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 8px;
}

    .pdf-navigation .btn-icon[b-slvy4covnk] {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border: 1px solid #E9ECEF;
        border-radius: 8px;
        color: #2C3E50;
        cursor: pointer;
        transition: all 0.2s ease;
        font-size: 1rem;
    }

        .pdf-navigation .btn-icon:hover:not(:disabled)[b-slvy4covnk] {
            background: #5856D6;
            color: white;
            border-color: #5856D6;
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(88, 86, 214, 0.2);
        }

        .pdf-navigation .btn-icon:disabled[b-slvy4covnk] {
            opacity: 0.4;
            cursor: not-allowed;
            background: #f5f5f5;
        }

.page-info[b-slvy4covnk] {
    font-weight: 500;
    color: #2C3E50;
    min-width: 120px;
    text-align: center;
    font-size: 0.875rem;
}

/* PDF Viewer Updates */
.pdf-viewer[b-slvy4covnk] {
    position: relative;
    max-height: 500px;
    overflow: auto;
    border: 1px solid #E9ECEF;
    border-radius: 8px;
    background: #F8F9FA;
    cursor: crosshair;
    margin-bottom: 1rem;
}

#pdf-canvas[b-slvy4covnk] {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* Signature List */
.signature-list[b-slvy4covnk] {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    border: 1px solid #E9ECEF;
}

    .signature-list h4[b-slvy4covnk] {
        margin: 0 0 1rem 0;
        color: #2C3E50;
        font-size: 1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

.signature-items[b-slvy4covnk] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.signature-item[b-slvy4covnk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: white;
    border: 1px solid #E9ECEF;
    border-radius: 8px;
    transition: all 0.2s ease;
}

    .signature-item.current-page[b-slvy4covnk] {
        border-color: #5856D6;
        background: rgba(88, 86, 214, 0.05);
        box-shadow: 0 2px 8px rgba(88, 86, 214, 0.08);
    }

    .signature-item:hover[b-slvy4covnk] {
        border-color: rgba(88, 86, 214, 0.4);
        box-shadow: 0 2px 8px rgba(88, 86, 214, 0.08);
    }

.signature-info[b-slvy4covnk] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

    .signature-info i[b-slvy4covnk] {
        color: #5856D6;
        font-size: 1rem;
    }

.signature-label-input[b-slvy4covnk] {
    padding: 0.375rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    font-size: 0.875rem;
    color: #2C3E50;
    min-width: 120px;
    transition: all 0.2s ease;
    font-family: inherit;
}

    .signature-label-input:hover[b-slvy4covnk] {
        background: rgba(248, 249, 250, 0.8);
        border-color: #E9ECEF;
    }

    .signature-label-input:focus[b-slvy4covnk] {
        outline: none;
        background: white;
        border-color: #5856D6;
        box-shadow: 0 0 0 3px rgba(88, 86, 214, 0.1);
    }

.signature-page[b-slvy4covnk] {
    font-size: 0.8rem;
    color: #6C757D;
    font-weight: 500;
    white-space: nowrap;
}

.signature-actions[b-slvy4covnk] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Small Button Variants */
.btn-sm[b-slvy4covnk] {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.75rem !important;
    padding: 0 !important;
}

    .btn-sm.btn-danger:hover[b-slvy4covnk] {
        background: #FF3B30 !important;
        color: white !important;
        border-color: #FF3B30 !important;
    }

/* PDF Modal Specific Updates */
.pdf-preview-modal[b-slvy4covnk] {
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
}

    .pdf-preview-modal .modal-body[b-slvy4covnk] {
        padding: 1.5rem;
        overflow-y: auto;
        max-height: calc(90vh - 200px);
    }

/* Loading State for PDF */
.pdf-loading[b-slvy4covnk] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: #6C757D;
    font-size: 1rem;
}

    .pdf-loading .spinner[b-slvy4covnk] {
        margin-right: 0.5rem;
    }

/* Signature Marker (for rendered signatures on PDF) */
.signature-marker[b-slvy4covnk] {
    position: absolute;
    background: rgba(88, 86, 214, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(88, 86, 214, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
    z-index: 10;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

    .signature-marker .remove-signature[b-slvy4covnk] {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        margin-left: 4px;
        font-size: 0.875rem;
        line-height: 1;
        padding: 0;
        transition: all 0.2s ease;
        color: white;
    }

        .signature-marker .remove-signature:hover[b-slvy4covnk] {
            background: rgba(255, 59, 48, 0.8);
            transform: scale(1.1);
        }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pdf-preview-modal[b-slvy4covnk] {
        width: 95%;
        max-width: none;
        height: 95vh;
    }

    .signature-list[b-slvy4covnk] {
        margin-top: 1rem;
        padding: 0.75rem;
    }

    .signature-item[b-slvy4covnk] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .signature-actions[b-slvy4covnk] {
        align-self: flex-end;
    }

    .pdf-navigation[b-slvy4covnk] {
        padding: 0.5rem;
        gap: 0.75rem;
    }

    .page-info[b-slvy4covnk] {
        min-width: auto;
        font-size: 0.8rem;
    }
}

/* Fix button icon alignment */
.btn-icon i[b-slvy4covnk] {
    font-size: 1rem;
    line-height: 1;
}

/* Ensure modal footer buttons are properly styled */
.modal-footer .btn-primary[b-slvy4covnk],
.modal-footer .btn-secondary[b-slvy4covnk] {
    min-width: 120px;
}

    .modal-footer .btn-primary:disabled[b-slvy4covnk] {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }


/* Fix for Agency Agreement Upload Area */
.agreement-upload-area[b-slvy4covnk] {
    margin-bottom: 16px;
    text-align: center;
}

    .agreement-upload-area .upload-label[b-slvy4covnk] {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 48px 32px;
        background: rgba(255, 255, 255, 0.8);
        border: 2px dashed rgba(88, 86, 214, 0.3);
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        min-height: 200px;
    }

        .agreement-upload-area .upload-label:hover[b-slvy4covnk] {
            background: rgba(88, 86, 214, 0.05);
            border-color: var(--vibrant-purple, #5856D6);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(88, 86, 214, 0.1);
        }

    .agreement-upload-area .upload-icon[b-slvy4covnk] {
        font-size: 3rem;
        color: var(--vibrant-purple, #5856D6);
        margin-bottom: 16px;
        opacity: 0.8;
        transition: all 0.3s ease;
    }

    .agreement-upload-area .upload-label:hover .upload-icon[b-slvy4covnk] {
        opacity: 1;
        transform: scale(1.1);
    }

    .agreement-upload-area .upload-text[b-slvy4covnk] {
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-primary, #2C3E50);
        margin-bottom: 4px;
    }

    .agreement-upload-area .upload-hint[b-slvy4covnk] {
        font-size: 0.875rem;
        color: var(--text-secondary, #6C757D);
    }

/* Hidden file input */
input[type="file"]#agency-agreement-file[b-slvy4covnk] {
    display: none !important;
}

/* Checkbox styling within agreement section */
.agreement-upload-area .checkbox-group[b-slvy4covnk] {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

    .agreement-upload-area .checkbox-group input[type="checkbox"][b-slvy4covnk] {
        width: 20px !important;
        height: 20px !important;
        cursor: pointer;
        margin: 0 !important;
        padding: 0 !important;
    }

    .agreement-upload-area .checkbox-group label[b-slvy4covnk] {
        cursor: pointer;
        font-size: 0.95rem;
        color: var(--text-secondary, #6C757D);
        margin: 0;
        font-weight: normal;
    }



/* Critical Style Overrides - Place at the end */
.liquid-container input:not([type="checkbox"]):not([type="radio"])[b-slvy4covnk],
.liquid-container select[b-slvy4covnk],
.liquid-container textarea[b-slvy4covnk] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: white !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    color: var(--text-primary) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06) !important;
}

/* Specific fix for estimated value field */
.liquid-container .input-prefix-container input#estimatedValue[b-slvy4covnk] {
    padding-left: 45px !important;
}

/* Debug helper - uncomment to see which styles are being applied */
/*
.liquid-container input,
.liquid-container select {
    border: 3px solid red !important;
}
*/
/* _content/Validiti/Components/Pages/RequestConfirmation.razor.rz.scp.css */
/* Confirmation Page Styles */
.confirmation-container[b-t7do7fm0uw] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: var(--space-6);
}

.confirmation-card[b-t7do7fm0uw] {
    max-width: 600px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Success Icon Animation */
.success-icon-container[b-t7do7fm0uw] {
    position: relative;
    margin: 0 auto var(--space-6);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon[b-t7do7fm0uw] {
    width: 80px;
    height: 80px;
    background: var(--success-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    animation: successPop-b-t7do7fm0uw 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-rings[b-t7do7fm0uw] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring[b-t7do7fm0uw] {
    position: absolute;
    border: 2px solid var(--success-color);
    border-radius: 50%;
    opacity: 0;
}

.ring-1[b-t7do7fm0uw] {
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    animation: ripple-b-t7do7fm0uw 2s infinite;
}

.ring-2[b-t7do7fm0uw] {
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
    animation: ripple-b-t7do7fm0uw 2s infinite 0.3s;
}

.ring-3[b-t7do7fm0uw] {
    width: 140px;
    height: 140px;
    margin: -70px 0 0 -70px;
    animation: ripple-b-t7do7fm0uw 2s infinite 0.6s;
}

@keyframes successPop-b-t7do7fm0uw {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ripple-b-t7do7fm0uw {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    20% {
        opacity: 0.3;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Content Styling */
.confirmation-content h1[b-t7do7fm0uw] {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin: 0 0 var(--space-3);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.confirmation-content .subtitle[b-t7do7fm0uw] {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    margin: 0 0 var(--space-6);
}

/* Request Details */
.request-details[b-t7do7fm0uw] {
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    margin: var(--space-6) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.detail-item[b-t7do7fm0uw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

    .detail-item:last-child[b-t7do7fm0uw] {
        border-bottom: none;
    }

.detail-label[b-t7do7fm0uw] {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    font-weight: 500;
}

.detail-value[b-t7do7fm0uw] {
    font-size: var(--font-size-base);
    color: var(--gray-900);
    font-weight: 600;
}

/* Email Prompt */
.email-prompt[b-t7do7fm0uw] {
    background: linear-gradient(135deg, rgba(79, 147, 255, 0.1) 0%, rgba(95, 221, 203, 0.1) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin: var(--space-6) 0;
    text-align: left;
}

    .email-prompt h3[b-t7do7fm0uw] {
        display: flex;
        align-items: center;
        gap: var(--space-2);
        font-size: var(--font-size-xl);
        font-weight: 600;
        margin: 0 0 var(--space-3);
        color: var(--gray-800);
    }

        .email-prompt h3 i[b-t7do7fm0uw] {
            color: var(--primary-color);
        }

    .email-prompt > p[b-t7do7fm0uw] {
        color: var(--gray-700);
        margin: 0 0 var(--space-4);
        line-height: 1.6;
    }

/* Email Preview */
.email-preview[b-t7do7fm0uw] {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: var(--space-4);
}

.email-preview-header[b-t7do7fm0uw] {
    background: var(--gray-100);
    padding: var(--space-3) var(--space-4);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.email-preview-content[b-t7do7fm0uw] {
    padding: var(--space-4);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

    .email-preview-content p[b-t7do7fm0uw] {
        margin: 0 0 var(--space-2);
        color: var(--gray-700);
    }

        .email-preview-content p:last-child[b-t7do7fm0uw] {
            margin-bottom: 0;
        }

/* Action Buttons */
.confirmation-actions[b-t7do7fm0uw] {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin: var(--space-6) 0;
}

.btn-send-email[b-t7do7fm0uw] {
    background: var(--success-gradient) !important;
    box-shadow: 0 4px 20px rgba(95, 221, 203, 0.4) !important;
}

    .btn-send-email:hover:not(:disabled)[b-t7do7fm0uw] {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 30px rgba(95, 221, 203, 0.5) !important;
    }

/* Additional Options */
.additional-options[b-t7do7fm0uw] {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.link-button[b-t7do7fm0uw] {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-1);
    transition: var(--transition-fast);
    padding: var(--space-2);
    border-radius: var(--radius-md);
}

    .link-button:hover[b-t7do7fm0uw] {
        color: var(--primary-dark);
        background: rgba(79, 147, 255, 0.1);
    }

/* Toast Notification */
.toast[b-t7do7fm0uw] {
    position: fixed;
    top: var(--space-6);
    right: var(--space-6);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    z-index: 1000;
    animation: slideIn-b-t7do7fm0uw 0.3s ease-out;
}

.toast-success[b-t7do7fm0uw] {
    border-left: 4px solid var(--success-color);
    color: var(--success-color);
}

.toast i[b-t7do7fm0uw] {
    font-size: var(--font-size-lg);
}

@keyframes slideIn-b-t7do7fm0uw {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .confirmation-container[b-t7do7fm0uw] {
        padding: var(--space-4);
    }

    .confirmation-card[b-t7do7fm0uw] {
        padding: var(--space-5);
    }

    .confirmation-content h1[b-t7do7fm0uw] {
        font-size: var(--font-size-2xl);
    }

    .additional-options[b-t7do7fm0uw] {
        flex-direction: column;
        gap: var(--space-3);
    }

    .toast[b-t7do7fm0uw] {
        right: var(--space-4);
        left: var(--space-4);
        top: var(--space-4);
    }
}
/* _content/Validiti/Components/Pages/RequestDetail.razor.rz.scp.css */
/* Request Detail Page - Matching Dashboard Design System */

/* Container */
.request-detail-container[b-8hfua1cocl] {
    position: relative;
    min-height: 100vh;
    padding: 24px;
    background: var(--light-bg);
    font-family: var(--font-family);
}

/* Animated background */
.animated-bg[b-8hfua1cocl] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb[b-8hfua1cocl] {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float-b-8hfua1cocl 30s infinite ease-in-out;
}

.orb-1[b-8hfua1cocl] {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    top: -200px;
    left: -200px;
}

.orb-2[b-8hfua1cocl] {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.orb-3[b-8hfua1cocl] {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-purple) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

/* Glass card effect */
.glass-card[b-8hfua1cocl] {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: 24px;
    transition: all 300ms ease;
}

/* Breadcrumb */
.breadcrumb[b-8hfua1cocl] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.875rem;
}

    .breadcrumb a[b-8hfua1cocl] {
        color: var(--text-secondary);
        text-decoration: none;
        transition: color 150ms ease;
    }

        .breadcrumb a:hover[b-8hfua1cocl] {
            color: var(--vibrant-blue);
        }

    .breadcrumb i[b-8hfua1cocl] {
        color: var(--text-muted);
        font-size: 0.75rem;
    }

    .breadcrumb span[b-8hfua1cocl] {
        color: var(--text-primary);
        font-weight: 500;
    }

/* Header */
.detail-header[b-8hfua1cocl] {
    margin-bottom: 32px;
}

.header-content[b-8hfua1cocl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.header-info h1[b-8hfua1cocl] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.header-meta[b-8hfua1cocl] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.created-date[b-8hfua1cocl] {
    color: var(--text-secondary);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Header Actions */
.header-actions[b-8hfua1cocl] {
    display: flex;
    gap: 12px;
}

.action-btn[b-8hfua1cocl] {
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 300ms ease;
    border: none;
}

.btn-primary[b-8hfua1cocl] {
    background: linear-gradient(135deg, var(--vibrant-blue) 0%, var(--vibrant-purple) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
}

    .btn-primary:hover[b-8hfua1cocl] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
    }

.btn-secondary[b-8hfua1cocl] {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

    .btn-secondary:hover[b-8hfua1cocl] {
        background: var(--light-bg);
        border-color: var(--vibrant-blue);
        color: var(--vibrant-blue);
    }

/* Progress Overview */
.progress-overview[b-8hfua1cocl] {
    margin-bottom: 32px;
}

.progress-content[b-8hfua1cocl] {
    display: flex;
    gap: 48px;
    align-items: center;
}

.progress-stats h3[b-8hfua1cocl] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.progress-percentage[b-8hfua1cocl] {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--vibrant-blue) 0%, var(--vibrant-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-visual[b-8hfua1cocl] {
    flex: 1;
}

.progress-bar-large[b-8hfua1cocl] {
    height: 12px;
    background: var(--border-light);
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 24px;
}

.progress-fill-large[b-8hfua1cocl] {
    height: 100%;
    background: linear-gradient(90deg, var(--vibrant-blue), var(--vibrant-green));
    border-radius: 9999px;
    transition: width 500ms ease;
}

.progress-items[b-8hfua1cocl] {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.progress-item[b-8hfua1cocl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: all 200ms ease;
}

    .progress-item i[b-8hfua1cocl] {
        width: 36px;
        height: 36px;
        background: var(--border-light);
        border-radius: 9999px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 200ms ease;
    }

    .progress-item.completed[b-8hfua1cocl] {
        color: var(--vibrant-green);
    }

        .progress-item.completed i[b-8hfua1cocl] {
            background: var(--vibrant-green);
            color: white;
        }

/* Detail Grid */
.detail-grid[b-8hfua1cocl] {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
}

@media (max-width: 1200px) {
    .detail-grid[b-8hfua1cocl] {
        grid-template-columns: 1fr;
    }
}

/* Detail Card */
.detail-card[b-8hfua1cocl] {
    margin-bottom: 24px;
}

.card-header[b-8hfua1cocl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

    .card-header h2[b-8hfua1cocl] {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-primary);
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .card-header h2 i[b-8hfua1cocl] {
            font-size: 1rem;
            color: var(--primary-blue);
        }

.add-btn[b-8hfua1cocl] {
    width: 32px;
    height: 32px;
    background: var(--vibrant-blue);
    color: white;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 150ms ease;
}

    .add-btn:hover[b-8hfua1cocl] {
        background: var(--vibrant-purple);
        transform: scale(1.1);
    }

/* Detail Rows */
.detail-row[b-8hfua1cocl] {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-ultra-light);
}

    .detail-row:last-child[b-8hfua1cocl] {
        border-bottom: none;
    }

    .detail-row label[b-8hfua1cocl] {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--text-secondary);
    }

.detail-value[b-8hfua1cocl] {
    font-size: 0.875rem;
    color: var(--text-primary);
}

    .detail-value a[b-8hfua1cocl] {
        color: var(--vibrant-blue);
        text-decoration: none;
    }

        .detail-value a:hover[b-8hfua1cocl] {
            text-decoration: underline;
        }

/* Documents List */
.documents-list[b-8hfua1cocl] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.document-item[b-8hfua1cocl] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 200ms ease;
}

    .document-item:hover[b-8hfua1cocl] {
        background: var(--card-bg);
        border-color: var(--primary-blue);
    }

.doc-icon[b-8hfua1cocl] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.doc-info[b-8hfua1cocl] {
    flex: 1;
}

.doc-name[b-8hfua1cocl] {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.doc-meta[b-8hfua1cocl] {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    gap: 8px;
}

.doc-status-badge[b-8hfua1cocl] {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 9999px;
    text-transform: uppercase;
}

.status-verified[b-8hfua1cocl] {
    background: var(--vibrant-green);
    color: white;
}

.status-pending[b-8hfua1cocl] {
    background: var(--vibrant-orange);
    color: white;
}

.status-rejected[b-8hfua1cocl] {
    background: var(--vibrant-red);
    color: white;
}

.doc-actions[b-8hfua1cocl] {
    display: flex;
    gap: 8px;
}

.icon-btn[b-8hfua1cocl] {
    width: 32px;
    height: 32px;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 150ms ease;
    color: var(--text-secondary);
}

    .icon-btn:hover[b-8hfua1cocl] {
        background: var(--primary-blue);
        color: white;
        border-color: var(--primary-blue);
    }

    .icon-btn.verify:hover[b-8hfua1cocl] {
        background: var(--vibrant-green);
        border-color: var(--vibrant-green);
    }

    .icon-btn.reject:hover[b-8hfua1cocl] {
        background: var(--vibrant-red);
        border-color: var(--vibrant-red);
    }

.empty-docs[b-8hfua1cocl] {
    text-align: center;
    padding: 48px;
    color: var(--text-secondary);
}

    .empty-docs i[b-8hfua1cocl] {
        font-size: 3rem;
        color: var(--text-muted);
        margin-bottom: 16px;
    }

/* Compliance Checks */
.checks-grid[b-8hfua1cocl] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.check-item[b-8hfua1cocl] {
    padding: 16px;
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 200ms ease;
}

    .check-item.completed[b-8hfua1cocl] {
        border-color: var(--vibrant-green);
        background: linear-gradient(135deg, rgba(52, 199, 89, 0.05), rgba(52, 199, 89, 0.02));
    }

    .check-item.pending[b-8hfua1cocl] {
        border-color: var(--vibrant-orange);
        background: linear-gradient(135deg, rgba(255, 149, 0, 0.05), rgba(255, 149, 0, 0.02));
    }

.check-header[b-8hfua1cocl] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

    .check-header i[b-8hfua1cocl] {
        color: var(--primary-blue);
    }

.check-details[b-8hfua1cocl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.check-status[b-8hfua1cocl] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
}

    .check-status.success[b-8hfua1cocl] {
        color: var(--vibrant-green);
    }

    .check-status.warning[b-8hfua1cocl] {
        color: var(--vibrant-orange);
    }

    .check-status.pending[b-8hfua1cocl] {
        color: var(--text-secondary);
    }

.check-info[b-8hfua1cocl] {
    text-align: right;
}

    .check-info small[b-8hfua1cocl] {
        font-size: 0.75rem;
        color: var(--text-secondary);
    }

.check-btn[b-8hfua1cocl] {
    background: var(--vibrant-blue);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 150ms ease;
}

    .check-btn:hover[b-8hfua1cocl] {
        background: var(--vibrant-purple);
        transform: translateY(-1px);
    }

/* Timeline */
.timeline[b-8hfua1cocl] {
    position: relative;
    padding-left: 32px;
}

    .timeline[b-8hfua1cocl]::before {
        content: '';
        position: absolute;
        left: 12px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--border-light);
    }

.timeline-item[b-8hfua1cocl] {
    position: relative;
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

    .timeline-item:last-child[b-8hfua1cocl] {
        margin-bottom: 0;
    }

.timeline-icon[b-8hfua1cocl] {
    position: absolute;
    left: -32px;
    width: 24px;
    height: 24px;
    background: var(--card-bg);
    border: 2px solid var(--border-light);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
}

    .timeline-icon.icon-blue[b-8hfua1cocl] {
        border-color: var(--vibrant-blue);
        color: var(--vibrant-blue);
    }

    .timeline-icon.icon-green[b-8hfua1cocl] {
        border-color: var(--vibrant-green);
        color: var(--vibrant-green);
    }

    .timeline-icon.icon-purple[b-8hfua1cocl] {
        border-color: var(--vibrant-purple);
        color: var(--vibrant-purple);
    }

.timeline-content[b-8hfua1cocl] {
    flex: 1;
}

.timeline-title[b-8hfua1cocl] {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.timeline-time[b-8hfua1cocl] {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Quick Actions Grid */
.quick-actions-grid[b-8hfua1cocl] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.quick-action[b-8hfua1cocl] {
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 150ms ease;
    color: var(--text-primary);
}

    .quick-action:hover[b-8hfua1cocl] {
        background: var(--card-bg);
        color: var(--vibrant-blue);
        border-color: var(--vibrant-blue);
        transform: translateY(-2px);
    }

    .quick-action i[b-8hfua1cocl] {
        font-size: 1.25rem;
    }

/* Status badges */
.status-badge[b-8hfua1cocl] {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-completed[b-8hfua1cocl] {
    background: var(--vibrant-green);
    color: white;
}

.status-progress[b-8hfua1cocl] {
    background: var(--vibrant-blue);
    color: white;
}

.status-pending[b-8hfua1cocl] {
    background: var(--vibrant-orange);
    color: white;
}

.status-documents[b-8hfua1cocl] {
    background: var(--vibrant-purple);
    color: white;
}

.status-rejected[b-8hfua1cocl] {
    background: var(--vibrant-red);
    color: white;
}

.status-expired[b-8hfua1cocl] {
    background: #8E8E93;
    color: white;
}

/* Error Container */
.error-container[b-8hfua1cocl] {
    max-width: 500px;
    margin: 100px auto;
    text-align: center;
}

.error-icon[b-8hfua1cocl] {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.1), rgba(255, 59, 48, 0.05));
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--vibrant-red);
}

.error-container h3[b-8hfua1cocl] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.error-container p[b-8hfua1cocl] {
    color: var(--text-secondary);
    margin: 0 0 24px;
}

/* Primary button */
.primary-btn[b-8hfua1cocl] {
    background: linear-gradient(135deg, var(--vibrant-blue) 0%, var(--vibrant-purple) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 300ms ease;
}

    .primary-btn:hover[b-8hfua1cocl] {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
    }

/* Loading */
.loading-container[b-8hfua1cocl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.loading-spinner[b-8hfua1cocl] {
    position: relative;
    width: 60px;
    height: 60px;
}

.spinner-ring[b-8hfua1cocl] {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--border-light);
    border-top-color: var(--vibrant-blue);
    border-radius: 50%;
    animation: spin-b-8hfua1cocl 1s linear infinite;
}

@keyframes spin-b-8hfua1cocl {
    to {
        transform: rotate(360deg);
    }
}

@keyframes float-b-8hfua1cocl {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .request-detail-container[b-8hfua1cocl] {
        padding: 16px;
    }

    .progress-content[b-8hfua1cocl] {
        flex-direction: column;
        gap: 24px;
    }

    .progress-items[b-8hfua1cocl] {
        flex-wrap: wrap;
        gap: 16px;
    }

    .detail-row[b-8hfua1cocl] {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .header-content[b-8hfua1cocl] {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-actions[b-8hfua1cocl] {
        width: 100%;
        flex-direction: column;
    }

    .action-btn[b-8hfua1cocl] {
        width: 100%;
        justify-content: center;
    }
}

/* Print styles */
@media print {
    .animated-bg[b-8hfua1cocl],
    .header-actions[b-8hfua1cocl],
    .add-btn[b-8hfua1cocl],
    .icon-btn[b-8hfua1cocl],
    .check-btn[b-8hfua1cocl],
    .quick-actions-grid[b-8hfua1cocl] {
        display: none !important;
    }

    .glass-card[b-8hfua1cocl] {
        background: white;
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    .detail-grid[b-8hfua1cocl] {
        grid-template-columns: 1fr;
    }
}
/* _content/Validiti/Components/Pages/Requests.razor.rz.scp.css */
/* All Requests Page - Fixed with proper CSS variables */

/* Container */
.requests-container[b-km5f9ul2au] {
    position: relative;
    min-height: 100vh;
    padding: 24px;
    background: var(--light-bg, #F8F9FA);
    font-family: var(--font-family);
}

/* Animated background */
.animated-bg[b-km5f9ul2au] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb[b-km5f9ul2au] {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float-b-km5f9ul2au 30s infinite ease-in-out;
}

.orb-1[b-km5f9ul2au] {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-blue, #6B9BD1) 0%, var(--primary-teal, #72C7CC) 100%);
    top: -200px;
    left: -200px;
}

.orb-2[b-km5f9ul2au] {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-purple, #9B8EC1) 0%, var(--primary-blue, #6B9BD1) 100%);
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.orb-3[b-km5f9ul2au] {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-teal, #72C7CC) 0%, var(--primary-purple, #9B8EC1) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

/* Glass card effect */
.glass-card[b-km5f9ul2au] {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 24px;
    transition: all 300ms ease;
    position: relative;
    z-index: 1;
}

    .glass-card:hover[b-km5f9ul2au] {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

/* Header */
.requests-header[b-km5f9ul2au] {
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.header-content[b-km5f9ul2au] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.header-title h1[b-km5f9ul2au] {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary, #2C3E50);
    margin: 0;
    background: linear-gradient(135deg, var(--primary-blue, #6B9BD1) 0%, var(--primary-teal, #72C7CC) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle[b-km5f9ul2au] {
    font-size: 1.125rem;
    color: var(--text-secondary, #6C757D);
    margin: 4px 0 0;
}

/* Primary action button */
.primary-action-btn[b-km5f9ul2au] {
    background: linear-gradient(135deg, var(--vibrant-blue, #007AFF) 0%, var(--vibrant-purple, #5856D6) 100%);
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 300ms ease;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
    text-decoration: none;
}

    .primary-action-btn:hover[b-km5f9ul2au] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
    }

/* Filters Section */
.filters-section[b-km5f9ul2au] {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Search Box */
.search-box[b-km5f9ul2au] {
    position: relative;
    max-width: 500px;
}

.search-icon[b-km5f9ul2au] {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted, #ADB5BD);
    font-size: 1rem;
}

.search-input[b-km5f9ul2au] {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-light, #E9ECEF);
    border-radius: 12px;
    padding: 16px 16px 16px 48px;
    font-size: 1rem;
    color: var(--text-primary, #2C3E50);
    transition: all 150ms ease;
}

    .search-input:focus[b-km5f9ul2au] {
        outline: none;
        border-color: var(--vibrant-purple, #5856D6);
        background: white;
        box-shadow: 0 0 0 3px rgba(88, 86, 214, 0.1);
    }

/* Filter Group */
.filter-group[b-km5f9ul2au] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn[b-km5f9ul2au] {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-light, #E9ECEF);
    border-radius: 9999px;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary, #6C757D);
    cursor: pointer;
    transition: all 150ms ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .filter-btn:hover[b-km5f9ul2au] {
        background: white;
        color: var(--text-primary, #2C3E50);
        border-color: var(--primary-blue, #6B9BD1);
    }

    .filter-btn.active[b-km5f9ul2au] {
        background: var(--vibrant-blue, #007AFF);
        color: white;
        border-color: var(--vibrant-blue, #007AFF);
    }

    .filter-btn .badge[b-km5f9ul2au] {
        background: rgba(0, 0, 0, 0.1);
        color: inherit;
        padding: 2px 6px;
        border-radius: 9999px;
        font-size: 0.75rem;
        font-weight: 600;
    }

    .filter-btn.active .badge[b-km5f9ul2au] {
        background: rgba(255, 255, 255, 0.2);
    }

/* Sort Controls */
.sort-controls[b-km5f9ul2au] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

    .sort-controls label[b-km5f9ul2au] {
        font-size: 0.875rem;
        color: var(--text-secondary, #6C757D);
        font-weight: 500;
    }

.sort-select[b-km5f9ul2au] {
    background: white;
    border: 1px solid var(--border-light, #E9ECEF);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.875rem;
    color: var(--text-primary, #2C3E50);
    cursor: pointer;
    transition: all 150ms ease;
}

    .sort-select:focus[b-km5f9ul2au] {
        outline: none;
        border-color: var(--vibrant-purple, #5856D6);
    }

/* Table Card */
.requests-table-card[b-km5f9ul2au] {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.table-responsive[b-km5f9ul2au] {
    overflow-x: auto;
}

/* Requests Table */
.requests-table[b-km5f9ul2au] {
    width: 100%;
    border-spacing: 0;
    background: transparent;
}

    .requests-table th[b-km5f9ul2au] {
        text-align: left;
        padding: 16px;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--text-secondary, #6C757D);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        border-bottom: 1px solid var(--border-light, #E9ECEF);
        background: rgba(248, 249, 250, 0.5);
    }

    .requests-table td[b-km5f9ul2au] {
        padding: 16px;
        border-bottom: 1px solid var(--border-light, #E9ECEF);
        background: transparent;
    }

.table-row[b-km5f9ul2au] {
    cursor: pointer;
    transition: all 150ms ease;
}

    .table-row:hover[b-km5f9ul2au] {
        background: rgba(107, 155, 209, 0.05);
    }

/* Cell Styles */
.reference-cell .reference-number[b-km5f9ul2au] {
    font-weight: 600;
    color: var(--vibrant-blue, #007AFF);
}

.property-info[b-km5f9ul2au] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.property-address[b-km5f9ul2au] {
    font-size: 0.875rem;
    color: var(--text-primary, #2C3E50);
    font-weight: 500;
}

.property-postcode[b-km5f9ul2au] {
    font-size: 0.75rem;
    color: var(--text-secondary, #6C757D);
}

.seller-info[b-km5f9ul2au] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.seller-name[b-km5f9ul2au] {
    font-size: 0.875rem;
    color: var(--text-primary, #2C3E50);
    font-weight: 500;
}

.seller-email[b-km5f9ul2au] {
    font-size: 0.75rem;
    color: var(--text-secondary, #6C757D);
}

/* Status badges */
.status-badge[b-km5f9ul2au] {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.status-completed[b-km5f9ul2au] {
    background: var(--vibrant-green, #34C759);
    color: white;
}

.status-progress[b-km5f9ul2au] {
    background: var(--vibrant-blue, #007AFF);
    color: white;
}

.status-pending[b-km5f9ul2au] {
    background: var(--vibrant-orange, #FF9500);
    color: white;
}

.status-documents[b-km5f9ul2au] {
    background: var(--vibrant-purple, #5856D6);
    color: white;
}

.status-rejected[b-km5f9ul2au] {
    background: var(--vibrant-red, #FF3B30);
    color: white;
}

.status-expired[b-km5f9ul2au] {
    background: #8E8E93;
    color: white;
}

/* Progress Cell */
.progress-cell[b-km5f9ul2au] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-bar[b-km5f9ul2au] {
    flex: 1;
    height: 6px;
    background: var(--border-light, #E9ECEF);
    border-radius: 3px;
    overflow: hidden;
    max-width: 100px;
}

.progress-fill[b-km5f9ul2au] {
    height: 100%;
    background: linear-gradient(90deg, var(--vibrant-blue, #007AFF), var(--vibrant-green, #34C759));
    border-radius: 3px;
    transition: width 300ms ease;
}

.progress-text[b-km5f9ul2au] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary, #2C3E50);
    min-width: 35px;
    text-align: right;
}

/* Date Cell */
.date-cell[b-km5f9ul2au] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.time-text[b-km5f9ul2au] {
    font-size: 0.75rem;
    color: var(--text-secondary, #6C757D);
}

/* Actions Cell */
.actions-cell[b-km5f9ul2au] {
    display: flex;
    gap: 8px;
}

.action-icon[b-km5f9ul2au] {
    width: 32px;
    height: 32px;
    background: white;
    border: 1px solid var(--border-light, #E9ECEF);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 150ms ease;
    color: var(--text-secondary, #6C757D);
}

    .action-icon:hover[b-km5f9ul2au] {
        background: var(--vibrant-blue, #007AFF);
        color: white;
        border-color: var(--vibrant-blue, #007AFF);
        transform: scale(1.1);
    }

/* Pagination */
.pagination[b-km5f9ul2au] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light, #E9ECEF);
}

.page-btn[b-km5f9ul2au] {
    width: 36px;
    height: 36px;
    background: white;
    border: 1px solid var(--border-light, #E9ECEF);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 150ms ease;
    color: var(--text-primary, #2C3E50);
    font-weight: 500;
}

    .page-btn:hover:not(:disabled)[b-km5f9ul2au] {
        background: var(--light-bg, #F8F9FA);
        border-color: var(--vibrant-blue, #007AFF);
        color: var(--vibrant-blue, #007AFF);
    }

    .page-btn.active[b-km5f9ul2au] {
        background: var(--vibrant-blue, #007AFF);
        color: white;
        border-color: var(--vibrant-blue, #007AFF);
    }

    .page-btn:disabled[b-km5f9ul2au] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.page-dots[b-km5f9ul2au] {
    padding: 0 8px;
    color: var(--text-secondary, #6C757D);
}

/* Empty State */
.empty-state[b-km5f9ul2au] {
    text-align: center;
    padding: 48px;
}

.empty-icon[b-km5f9ul2au] {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(107, 155, 209, 0.1), rgba(114, 199, 204, 0.1));
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue, #6B9BD1);
}

.empty-state h3[b-km5f9ul2au] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary, #2C3E50);
    margin: 0 0 8px;
}

.empty-state p[b-km5f9ul2au] {
    color: var(--text-secondary, #6C757D);
    margin: 0 0 24px;
}

/* Primary button */
.primary-btn[b-km5f9ul2au] {
    background: linear-gradient(135deg, var(--vibrant-blue, #007AFF) 0%, var(--vibrant-purple, #5856D6) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 300ms ease;
}

    .primary-btn:hover[b-km5f9ul2au] {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
    }

/* Loading */
.loading-container[b-km5f9ul2au] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.loading-spinner[b-km5f9ul2au] {
    position: relative;
    width: 60px;
    height: 60px;
}

.spinner-ring[b-km5f9ul2au] {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--border-light, #E9ECEF);
    border-top-color: var(--vibrant-blue, #007AFF);
    border-radius: 50%;
    animation: spin-b-km5f9ul2au 1s linear infinite;
}

.loading-text[b-km5f9ul2au] {
    margin-top: 16px;
    color: var(--text-secondary, #6C757D);
}

@keyframes spin-b-km5f9ul2au {
    to {
        transform: rotate(360deg);
    }
}

@keyframes float-b-km5f9ul2au {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Icon styling for Bootstrap Icons */
.bi[b-km5f9ul2au] {
    font-size: 1rem;
    vertical-align: middle;
}

.filter-btn .bi[b-km5f9ul2au] {
    font-size: 0.875rem;
}

.action-icon .bi[b-km5f9ul2au] {
    font-size: 1rem;
}

.page-btn .bi[b-km5f9ul2au] {
    font-size: 0.875rem;
}

.empty-icon .bi[b-km5f9ul2au] {
    font-size: 2.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .filters-section[b-km5f9ul2au] {
        flex-direction: column;
    }

    .sort-controls[b-km5f9ul2au] {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .requests-container[b-km5f9ul2au] {
        padding: 16px;
    }

    .header-title h1[b-km5f9ul2au] {
        font-size: 2rem;
    }

    .table-responsive[b-km5f9ul2au] {
        margin: 0 -16px;
    }

    .requests-table[b-km5f9ul2au] {
        font-size: 0.875rem;
    }

        .requests-table th[b-km5f9ul2au],
        .requests-table td[b-km5f9ul2au] {
            padding: 12px 8px;
        }

    .filter-group[b-km5f9ul2au] {
        overflow-x: auto;
        flex-wrap: nowrap;
        margin: 0 -16px;
        padding: 0 16px;
    }

    .actions-cell[b-km5f9ul2au] {
        flex-direction: column;
        gap: 4px;
    }

    .action-icon[b-km5f9ul2au] {
        width: 28px;
        height: 28px;
    }
}
/* _content/Validiti/Components/Pages/SetupProfile.razor.rz.scp.css */
/* Setup Profile Specific Styles */
.setup-profile-container[b-hkgy7vm8cn] {
    padding: 2rem 0;
}

.setup-icon[b-hkgy7vm8cn] {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

    .setup-icon i[b-hkgy7vm8cn] {
        color: white;
    }

/* Progress Steps */
.setup-steps[b-hkgy7vm8cn] {
    max-width: 500px;
    margin: 0 auto;
}

.step-indicator[b-hkgy7vm8cn] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step[b-hkgy7vm8cn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.step-icon[b-hkgy7vm8cn] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    color: #6c757d;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-icon[b-hkgy7vm8cn] {
    background-color: #007bff;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.step-label[b-hkgy7vm8cn] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
}

.step.active .step-label[b-hkgy7vm8cn] {
    color: #007bff;
}

.step-line[b-hkgy7vm8cn] {
    flex: 1;
    height: 2px;
    background-color: #e9ecef;
    margin: 0 1rem;
    margin-top: -25px;
}

/* Form Styling */
.card[b-hkgy7vm8cn] {
    border-radius: 15px;
}

.card-header[b-hkgy7vm8cn] {
    border-radius: 15px 15px 0 0 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.form-control[b-hkgy7vm8cn] {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

    .form-control:focus[b-hkgy7vm8cn] {
        border-color: #007bff;
        box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.15);
    }

.form-control-lg[b-hkgy7vm8cn] {
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.form-label[b-hkgy7vm8cn] {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

    .form-label i[b-hkgy7vm8cn] {
        color: #007bff;
    }

/* User Info Card */
.user-info-card[b-hkgy7vm8cn] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

/* Button Styling */
.btn-primary[b-hkgy7vm8cn] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary:hover[b-hkgy7vm8cn] {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }

/* Help Section */
.help-section[b-hkgy7vm8cn] {
    max-width: 100%;
}

.help-icon[b-hkgy7vm8cn] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
}

/* Animations */
@keyframes fadeInUp-b-hkgy7vm8cn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.setup-profile-container[b-hkgy7vm8cn] {
    animation: fadeInUp-b-hkgy7vm8cn 0.6s ease-out;
}

/* Alert Styling */
.alert[b-hkgy7vm8cn] {
    border-radius: 10px;
    border: none;
}

.alert-danger[b-hkgy7vm8cn] {
    background-color: rgba(220, 53, 69, 0.1);
    color: #721c24;
}

/* Responsive Design */
@media (max-width: 768px) {
    .setup-profile-container[b-hkgy7vm8cn] {
        padding: 1rem 0;
    }

    .setup-icon[b-hkgy7vm8cn] {
        width: 60px;
        height: 60px;
    }

        .setup-icon i[b-hkgy7vm8cn] {
            font-size: 2rem;
        }

    .step-indicator[b-hkgy7vm8cn] {
        flex-direction: column;
        gap: 1rem;
    }

    .step-line[b-hkgy7vm8cn] {
        display: none;
    }

    .card-body[b-hkgy7vm8cn] {
        padding: 2rem !important;
    }
}

/* Loading States */
.spinner-border-sm[b-hkgy7vm8cn] {
    width: 1rem;
    height: 1rem;
}

/* Form Validation */
.text-danger[b-hkgy7vm8cn] {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.is-invalid[b-hkgy7vm8cn] {
    border-color: #dc3545;
}

.form-text[b-hkgy7vm8cn] {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

    .form-text i[b-hkgy7vm8cn] {
        color: #007bff;
    }
