/* /Components/Account/Shared/ExternalLoginPicker.razor.rz.scp.css */
.social-buttons-grid[b-ofcnv2ic1e] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-button[b-ofcnv2ic1e] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.social-button-google[b-ofcnv2ic1e] {
    border: 1px solid #e7e5e4; /* stone-200 */
    background-color: white;
    color: #44403c; /* stone-700 */
}

.social-button-google:hover[b-ofcnv2ic1e] {
    background-color: #f5f5f4; /* stone-100 */
}

.social-button-facebook[b-ofcnv2ic1e] {
    border: none;
    background-color: #1877F2;
    color: white;
}

.social-button-facebook:hover[b-ofcnv2ic1e] {
    background-color: #166fe5;
}

.social-icon[b-ofcnv2ic1e] {
    width: 1.25rem;
    height: 1.25rem;
}

.social-button-facebook .social-icon[b-ofcnv2ic1e] {
    font-size: 1.25rem;
}
/* /Components/Admin/CampaignDetailPanel.razor.rz.scp.css */
.slide-over-overlay[b-trx5en4lm4] {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 50;
    display: flex;
    justify-content: flex-end;
}

.slide-over-panel[b-trx5en4lm4] {
    width: 100%;
    max-width: 672px;
    background: white;
    height: 100vh;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    animation: slideInRight-b-trx5en4lm4 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes slideInRight-b-trx5en4lm4 {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* === HEADER === */
.slide-over-header[b-trx5en4lm4] {
    padding: 1.5rem;
    border-bottom: 1px solid #f5f5f4; /* stone-100 */
    background-color: #fafaf9; /* stone-50 */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: sticky;
    top: 0;
    z-index: 10;
}

.slide-over-label[b-trx5en4lm4] {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b; /* slate-500 */
    margin-bottom: 0.25rem;
}

.slide-over-title[b-trx5en4lm4] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a; /* slate-900 */
    margin-bottom: 0.25rem;
}

.slide-over-subtitle[b-trx5en4lm4] {
    font-size: 0.875rem;
    color: #64748b; /* slate-500 */
    margin-top: 0.25rem;
}

.slide-over-close[b-trx5en4lm4] {
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #64748b; /* slate-500 */
    border-radius: 9999px;
    transition: background-color 0.2s;
}

.slide-over-close:hover[b-trx5en4lm4] {
    background-color: #e7e5e4; /* stone-200 */
}

/* === TABS === */
.slide-over-tabs[b-trx5en4lm4] {
    display: flex;
    border-bottom: 1px solid #e7e5e4; /* stone-200 */
    padding: 0 1.5rem;
    background: white;
    position: sticky;
    top: calc(1.5rem + 4.5rem); /* Header height */
    z-index: 9;
}

.slide-over-tab[b-trx5en4lm4] {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    background: transparent;
    color: #64748b; /* slate-500 */
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.slide-over-tab:hover[b-trx5en4lm4] {
    color: #44403c; /* stone-700 */
}

.slide-over-tab.active[b-trx5en4lm4] {
    color: #0f766e; /* teal-800 */
    border-bottom-color: #0f766e; /* teal-600 */
}

/* === CONTENT === */
.slide-over-content[b-trx5en4lm4] {
    flex: 1;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* === APPROVAL CONTROLS === */
.approval-controls[b-trx5en4lm4] {
    background-color: #fff7ed; /* orange-50 */
    border: 1px solid #fed7aa; /* orange-100 */
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.approval-controls-title[b-trx5en4lm4] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #9a3412; /* orange-800 */
    margin-bottom: 0.75rem;
}

.approval-controls-text[b-trx5en4lm4] {
    font-size: 0.875rem;
    color: #c2410c; /* orange-700 */
    max-width: 28rem;
    margin-bottom: 1.5rem;
}

.approval-controls-actions[b-trx5en4lm4] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 28rem;
}

@media (min-width: 640px) {
    .approval-controls-actions[b-trx5en4lm4] {
        flex-direction: row;
    }
}

.approval-control-btn[b-trx5en4lm4] {
    flex: 1;
}

/* === DETAILS GRID === */
.details-grid[b-trx5en4lm4] {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .details-grid[b-trx5en4lm4] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.detail-item[b-trx5en4lm4] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.detail-icon[b-trx5en4lm4] {
    color: #a8a29e; /* stone-400 */
    margin-top: 0.125rem;
}

.detail-label[b-trx5en4lm4] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #64748b; /* slate-500 */
    margin-bottom: 0.25rem;
}

.detail-value[b-trx5en4lm4] {
    font-weight: 500;
    color: #0f172a; /* slate-900 */
}

/* === AD PREVIEW === */
.ad-preview-section[b-trx5en4lm4] {
    margin-top: 0.5rem;
}

.section-title[b-trx5en4lm4] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a; /* slate-900 */
    margin-bottom: 1rem;
}

.ad-preview-wrapper[b-trx5en4lm4] {
    display: flex;
    justify-content: center;
    padding: 1rem;
    background-color: #fafaf9; /* stone-50 */
    border-radius: 1rem;
}

.ad-preview[b-trx5en4lm4] {
    width: 100%;
    max-width: 20rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e7e5e4; /* stone-200 */
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ad-preview-header[b-trx5en4lm4] {
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #f5f5f4; /* stone-100 */
}

.ad-preview-avatar[b-trx5en4lm4] {
    width: 2rem;
    height: 2rem;
    background-color: #e7e5e4; /* stone-200 */
    border-radius: 9999px;
}

.ad-preview-meta[b-trx5en4lm4] {
    font-size: 0.75rem;
}

.ad-preview-name[b-trx5en4lm4] {
    font-weight: 700;
    color: #0f172a; /* slate-900 */
}

.ad-preview-sponsored[b-trx5en4lm4] {
    color: #a8a29e; /* stone-400 */
}

.ad-preview-image[b-trx5en4lm4] {
    height: 10rem;
    background-color: #e7e5e4; /* stone-200 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a8a29e; /* stone-400 */
}

.ad-preview-content[b-trx5en4lm4] {
    padding: 0.75rem;
    background-color: #fafaf9; /* stone-50 */
    border-top: 1px solid #f5f5f4; /* stone-100 */
}

.ad-preview-category[b-trx5en4lm4] {
    font-size: 0.625rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #64748b; /* slate-500 */
    margin-bottom: 0.25rem;
}

.ad-preview-title[b-trx5en4lm4] {
    font-weight: 700;
    color: #0f172a; /* slate-900 */
    margin-bottom: 0.25rem;
}

.ad-preview-description[b-trx5en4lm4] {
    font-size: 0.75rem;
    color: #57534e; /* stone-600 */
    margin-bottom: 0.75rem;
}

.ad-preview-cta[b-trx5en4lm4] {
    width: 100%;
    padding: 0.375rem;
    background-color: #e7e5e4; /* stone-200 */
    color: #57534e; /* stone-600 */
    border: none;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: default;
}

/* === META DATA === */
.meta-data-section[b-trx5en4lm4] {
    background-color: #0f172a;
    border-radius: 1rem;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: #cbd5e1;
    overflow-x: auto;
}

.meta-data-header[b-trx5en4lm4] {
    color: #64748b;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.meta-data-code[b-trx5en4lm4] {
    margin: 0;
    color: #cbd5e1;
    white-space: pre;
}

/* === CANDIDATES === */
.candidates-section[b-trx5en4lm4] {
    margin-top: 0.5rem;
}

.candidates-table-wrapper[b-trx5en4lm4] {
    border: 1px solid #e7e5e4; /* stone-200 */
    border-radius: 1rem;
    overflow: hidden;
    background: white;
}

.candidates-table[b-trx5en4lm4] {
    width: 100%;
    font-size: 0.875rem;
    text-align: left;
}

.candidates-table thead[b-trx5en4lm4] {
    background-color: #fafaf9; /* stone-50 */
    color: #64748b; /* slate-500 */
}

.candidates-table th[b-trx5en4lm4] {
    padding: 0.75rem 1rem;
    font-weight: 500;
}

.candidates-table tbody[b-trx5en4lm4] {
    background: white;
}

.candidates-table tbody tr[b-trx5en4lm4] {
    border-top: 1px solid #f5f5f4; /* stone-100 */
}

.candidates-table tbody tr:hover[b-trx5en4lm4] {
    background-color: #fafaf9; /* stone-50 */
}

.candidates-table td[b-trx5en4lm4] {
    padding: 0.75rem 1rem;
}

.candidate-name[b-trx5en4lm4] {
    font-weight: 700;
    color: #0f172a; /* slate-900 */
}

.candidate-phone[b-trx5en4lm4] {
    font-size: 0.75rem;
    color: #a8a29e; /* stone-400 */
}

.candidate-time[b-trx5en4lm4] {
    color: #64748b; /* slate-500 */
}

.candidate-action-btn[b-trx5en4lm4] {
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: #a8a29e; /* stone-400 */
    cursor: pointer;
    border-radius: 0.25rem;
    transition: color 0.2s;
}

.candidate-action-btn:hover[b-trx5en4lm4] {
    color: #0f766e; /* teal-600 */
}

.candidates-empty[b-trx5en4lm4] {
    padding: 2rem;
    text-align: center;
    color: #64748b; /* slate-500 */
    font-size: 0.875rem;
    border: 2px dashed #e7e5e4; /* stone-200 */
    border-radius: 1rem;
}

/* === EXPANDABLE CANDIDATE DETAILS === */
.selected-row[b-trx5en4lm4] {
    background-color: #f0fdfa !important; /* teal-50 */
    border-left: 3px solid #0f766e !important; /* teal-700 */
}

.candidate-detail-row[b-trx5en4lm4] {
    background-color: #fafaf9 !important; /* stone-50 */
}

.candidate-detail-row td[b-trx5en4lm4] {
    padding: 0 !important;
}

.candidate-detail-content[b-trx5en4lm4] {
    padding: 1.5rem 1rem;
    border-top: 1px solid #e7e5e4; /* stone-200 */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.candidate-detail-section[b-trx5en4lm4] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.candidate-detail-title[b-trx5en4lm4] {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a; /* slate-900 */
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.candidate-detail-grid[b-trx5en4lm4] {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .candidate-detail-grid[b-trx5en4lm4] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.candidate-detail-item[b-trx5en4lm4] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e7e5e4; /* stone-200 */
}

.detail-value-link[b-trx5en4lm4] {
    color: #0f766e; /* teal-700 */
    text-decoration: none;
    font-weight: 500;
}

.detail-value-link:hover[b-trx5en4lm4] {
    text-decoration: underline;
}

.candidate-answers-grid[b-trx5en4lm4] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.candidate-answer-item[b-trx5en4lm4] {
    padding: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e7e5e4; /* stone-200 */
}

.answer-question[b-trx5en4lm4] {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b; /* slate-500 */
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 0.25rem;
}

.answer-value[b-trx5en4lm4] {
    font-size: 0.875rem;
    font-weight: 500;
    color: #0f172a; /* slate-900 */
}

.candidate-detail-actions[b-trx5en4lm4] {
    display: flex;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 767px) {
    .slide-over-panel[b-trx5en4lm4] {
        max-width: 100%;
    }

    .slide-over-content[b-trx5en4lm4] {
        padding: 1.5rem 1rem;
    }
}
/* /Components/Admin/UserDetailPanel.razor.rz.scp.css */
/* Reuse slide-over styles from CampaignDetailPanel */
.slide-over-overlay[b-lcchb5zk80] {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 50;
    display: flex;
    justify-content: flex-end;
}

.slide-over-panel[b-lcchb5zk80] {
    width: 100%;
    max-width: 672px;
    background: white;
    height: 100vh;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    animation: slideInRight-b-lcchb5zk80 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes slideInRight-b-lcchb5zk80 {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-over-header[b-lcchb5zk80] {
    padding: 1.5rem;
    border-bottom: 1px solid #f5f5f4;
    background-color: #fafaf9;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: sticky;
    top: 0;
    z-index: 10;
}

.slide-over-title[b-lcchb5zk80] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.user-header-meta[b-lcchb5zk80] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.user-joined[b-lcchb5zk80] {
    color: #a8a29e;
}

.slide-over-close[b-lcchb5zk80] {
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #64748b;
    border-radius: 9999px;
    transition: background-color 0.2s;
}

.slide-over-close:hover[b-lcchb5zk80] {
    background-color: #e7e5e4;
}

.slide-over-content[b-lcchb5zk80] {
    flex: 1;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* === USER ACTIONS === */
.user-actions[b-lcchb5zk80] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .user-actions[b-lcchb5zk80] {
        flex-direction: row;
    }
}

.user-action-btn[b-lcchb5zk80] {
    flex: 1;
}

/* === DETAILS GRID === */
.details-grid[b-lcchb5zk80] {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .details-grid[b-lcchb5zk80] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.detail-item[b-lcchb5zk80] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.detail-icon[b-lcchb5zk80] {
    color: #a8a29e;
    margin-top: 0.125rem;
}

.detail-label[b-lcchb5zk80] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.detail-value[b-lcchb5zk80] {
    font-weight: 500;
    color: #0f172a;
}

/* === CAMPAIGN HISTORY === */
.campaign-history-section[b-lcchb5zk80] {
    margin-top: 0.5rem;
}

.section-title[b-lcchb5zk80] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.campaign-history-table-wrapper[b-lcchb5zk80] {
    border: 1px solid #e7e5e4;
    border-radius: 1rem;
    overflow: hidden;
    background: white;
}

.campaign-history-table[b-lcchb5zk80] {
    width: 100%;
    font-size: 0.875rem;
    text-align: left;
}

.campaign-history-table thead[b-lcchb5zk80] {
    background-color: #fafaf9;
    color: #64748b;
}

.campaign-history-table th[b-lcchb5zk80] {
    padding: 0.75rem 1rem;
    font-weight: 500;
}

.campaign-history-table tbody[b-lcchb5zk80] {
    background: white;
}

.campaign-history-table tbody tr[b-lcchb5zk80] {
    border-top: 1px solid #f5f5f4;
}

.campaign-history-table tbody tr:hover[b-lcchb5zk80] {
    background-color: #fafaf9;
}

.campaign-history-table td[b-lcchb5zk80] {
    padding: 0.75rem 1rem;
}

.campaign-title[b-lcchb5zk80] {
    font-weight: 600;
}

.campaign-view-btn[b-lcchb5zk80] {
    color: #0f766e;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
}

.campaign-view-btn:hover[b-lcchb5zk80] {
    color: #115e59;
}

.campaign-history-empty[b-lcchb5zk80] {
    padding: 2rem;
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
    border: 2px dashed #e7e5e4;
    border-radius: 0.5rem;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 767px) {
    .slide-over-panel[b-lcchb5zk80] {
        max-width: 100%;
    }

    .slide-over-content[b-lcchb5zk80] {
        padding: 1.5rem 1rem;
    }
}
/* /Components/Auth/Shared/PrimaryButton.razor.rz.scp.css */
.auth-primary-button[b-ytna946cju] {
    width: 100%;
    padding: 1rem;
    background-color: #0f766e; /* teal-700 */
    color: white;
    font-weight: bold;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.auth-primary-button:hover:not(:disabled)[b-ytna946cju] {
    background-color: #115e59; /* teal-800 */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.auth-primary-button:active:not(:disabled)[b-ytna946cju] {
    transform: scale(0.98);
}

.auth-primary-button:disabled[b-ytna946cju] {
    opacity: 0.7;
    cursor: not-allowed;
}
/* /Components/Auth/Shared/SocialDivider.razor.rz.scp.css */
.social-divider[b-vtxv6z7qbu] {
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.social-divider-line[b-vtxv6z7qbu] {
    flex-grow: 1;
    border-top: 1px solid #e7e5e4; /* stone-200 */
}

.social-divider-text[b-vtxv6z7qbu] {
    flex-shrink: 0;
    margin: 0 1rem;
    color: #a8a29e; /* stone-400 */
    font-size: 0.875rem;
}
/* /Components/Auth/Shared/SocialLoginButtons.razor.rz.scp.css */
.social-buttons-grid[b-wbyzbrwryr] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-button[b-wbyzbrwryr] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.social-button-google[b-wbyzbrwryr] {
    border: 1px solid #e7e5e4; /* stone-200 */
    background-color: white;
    color: #44403c; /* stone-700 */
}

.social-button-google:hover[b-wbyzbrwryr] {
    background-color: #f5f5f4; /* stone-100 */
}

.social-button-facebook[b-wbyzbrwryr] {
    border: none;
    background-color: #1877F2;
    color: white;
}

.social-button-facebook:hover[b-wbyzbrwryr] {
    background-color: #166fe5;
}

.social-icon[b-wbyzbrwryr] {
    width: 1.25rem;
    height: 1.25rem;
}

.social-button-facebook .social-icon[b-wbyzbrwryr] {
    font-size: 1.25rem;
}
/* /Components/Layout/AdminLayout.razor.rz.scp.css */
.admin-layout[b-ievk1479yl] {
    display: flex;
    min-height: 100vh;
    background-color: #f0f4f8;
}

/* === MOBILE HEADER === */
.admin-mobile-header[b-ievk1479yl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #0f172a; /* slate-900 */
    color: white;
    position: sticky;
    top: 0;
    z-index: 30;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.admin-mobile-brand[b-ievk1479yl] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.admin-brand-icon[b-ievk1479yl] {
    width: 2rem;
    height: 2rem;
    background-color: var(--rz-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.admin-mobile-menu-btn[b-ievk1479yl] {
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.admin-mobile-menu-btn:hover[b-ievk1479yl] {
    background-color: #1e293b; /* slate-800 */
}

/* === SIDEBAR === */
.admin-sidebar[b-ievk1479yl] {
    width: 256px;
    background-color: #0f172a; /* slate-900 */
    color: #cbd5e1; /* slate-300 */
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 40;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.admin-sidebar-logo[b-ievk1479yl] {
    display: none; /* Hidden on mobile, shown on desktop */
    padding: 1.5rem;
    border-bottom: 1px solid #1e293b; /* slate-800 */
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
}

.admin-brand-text[b-ievk1479yl] {
    display: inline;
}

.admin-sidebar-nav[b-ievk1479yl] {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.admin-sidebar-footer[b-ievk1479yl] {
    padding: 1rem;
    border-top: 1px solid #1e293b; /* slate-800 */
}

.admin-profile[b-ievk1479yl] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
}

.admin-profile-avatar[b-ievk1479yl] {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background-color: var(--rz-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rz-primary-light);
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.admin-profile-info[b-ievk1479yl] {
    font-size: 0.875rem;
    overflow: hidden;
}

.admin-profile-name[b-ievk1479yl] {
    color: white;
    font-weight: 500;
}

.admin-profile-email[b-ievk1479yl] {
    color: #64748b; /* slate-500 */
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* === SIDEBAR OVERLAY (Mobile) === */
.admin-sidebar-overlay[b-ievk1479yl] {
    display: none;
}

/* === MAIN CONTENT === */
.admin-main[b-ievk1479yl] {
    flex: 1;
    padding: 2rem 1rem;
    overflow-y: auto;
    min-height: 100vh;
}

/* === DESKTOP STYLES (768px+) === */
@media (min-width: 768px) {
    .admin-mobile-header[b-ievk1479yl] {
        display: none;
    }

    .admin-sidebar[b-ievk1479yl] {
        transform: translateX(0) !important; /* Always visible on desktop */
    }

    .admin-sidebar-logo[b-ievk1479yl] {
        display: flex;
    }

    .admin-sidebar-nav[b-ievk1479yl] {
        margin-top: 0;
    }

    .admin-main[b-ievk1479yl] {
        margin-left: 256px;
        padding: 2rem;
    }
}

/* === MOBILE STYLES (< 768px) === */
@media (max-width: 767px) {
    .admin-sidebar[b-ievk1479yl] {
        transform: translateX(-100%);
    }

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

    .admin-sidebar-overlay[b-ievk1479yl] {
        display: block;
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 35;
        animation: fadeIn-b-ievk1479yl 0.3s ease-in-out;
    }

    .admin-main[b-ievk1479yl] {
        margin-left: 0;
        padding-top: 1rem;
    }
}

@keyframes fadeIn-b-ievk1479yl {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* /Components/Layout/AdminNavItem.razor.rz.scp.css */
.admin-nav-item[b-v3u0sueve3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #cbd5e1; /* slate-300 */
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.admin-nav-item:hover[b-v3u0sueve3] {
    background-color: #1e293b; /* slate-800 */
    color: white;
}

.admin-nav-item.active[b-v3u0sueve3] {
    background-color: #0f766e; /* teal-600 */
    color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.admin-nav-item-content[b-v3u0sueve3] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-nav-item-label[b-v3u0sueve3] {
    font-weight: 500;
    font-size: 0.875rem;
}

.admin-nav-item-badge[b-v3u0sueve3] {
    background-color: #ef4444; /* red-500 */
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    min-width: 1.25rem;
    text-align: center;
}

.admin-nav-item.active .admin-nav-item-badge[b-v3u0sueve3] {
    background-color: #dc2626; /* red-600 - darker for active state */
}
/* /Components/Layout/AuthLayout.razor.rz.scp.css */
/* Auth Container */
.auth-container[b-267sspfjzh] {
    min-height: 100vh;
    display: flex;
    background-color: #fdfcfa;
    color: #191c1c;
}

/* LEFT PANEL: BRANDING */
.auth-branding-panel[b-267sspfjzh] {
    display: none;
    background-color: #134e4a; /* teal-900 */
    color: white;
    padding: 3rem;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .auth-branding-panel[b-267sspfjzh] {
        display: flex;
        width: 50%;
        padding-left: 8rem;
    }
}

/* Background Patterns */
.bg-pattern-1[b-267sspfjzh] {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: #0f766e; /* teal-800 */
    border-radius: 50%;
    filter: blur(3rem);
    margin-right: -5rem;
    margin-top: -5rem;
    opacity: 0.5;
}

.bg-pattern-2[b-267sspfjzh] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20rem;
    height: 20rem;
    background-color: #14b8a6; /* teal-600 */
    border-radius: 50%;
    filter: blur(3rem);
    margin-left: -5rem;
    margin-bottom: -5rem;
    opacity: 0.3;
}

/* Branding Content */
.branding-content[b-267sspfjzh],
.branding-hero[b-267sspfjzh] {
    position: relative;
    z-index: 10;
}

.brand-logo[b-267sspfjzh] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: -0.025em;
}

.logo-icon[b-267sspfjzh] {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.logo-icon i[b-267sspfjzh] {
    font-size: 1.5rem;
    color: #f0fdfa; /* teal-50 */
}

/* Hero Section */
.branding-hero[b-267sspfjzh] {
    max-width: 32rem;
}

.hero-title[b-267sspfjzh] {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-highlight[b-267sspfjzh] {
    font-weight: bold;
    color: #99f6e4; /* teal-200 */
}

.hero-description[b-267sspfjzh] {
    color: #ccfbf1; /* teal-100 */
    font-size: 1.125rem;
    line-height: 1.75;
    opacity: 0.9;
}

/* Testimonials */
.testimonials[b-267sspfjzh] {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.testimonial-avatar[b-267sspfjzh] {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid #0f766e; /* teal-800 */
    background-color: #115e59; /* teal-700 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    color: #ccfbf1; /* teal-100 */
    margin-left: -1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar:first-child[b-267sspfjzh] {
    margin-left: 0;
}

.testimonial-text[b-267sspfjzh] {
    margin-left: 0.5rem;
}

.testimonial-count[b-267sspfjzh] {
    font-size: 0.875rem;
    font-weight: bold;
}

.testimonial-location[b-267sspfjzh] {
    font-size: 0.75rem;
    color: #5eead4; /* teal-300 */
}

/* RIGHT PANEL: FORMS */
.auth-content-panel[b-267sspfjzh] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .auth-content-panel[b-267sspfjzh] {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .auth-content-panel[b-267sspfjzh] {
        width: 50%;
    }
}

.auth-content-wrapper[b-267sspfjzh] {
    width: 100%;
    max-width: 28rem;
}

/* Mobile Logo */
.mobile-logo[b-267sspfjzh] {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    color: #134e4a; /* teal-900 */
}

@media (min-width: 1024px) {
    .mobile-logo[b-267sspfjzh] {
        display: none;
    }
}

.mobile-logo i[b-267sspfjzh] {
    font-size: 3rem;
}

/* Animations */
@keyframes fade-in-b-267sspfjzh {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slide-up-b-267sspfjzh {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-up-b-267sspfjzh {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shake-b-267sspfjzh {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.animate-fade-in[b-267sspfjzh] {
    animation: fade-in-b-267sspfjzh 0.5s ease-out;
}

.animate-slide-up[b-267sspfjzh] {
    animation: slide-up-b-267sspfjzh 0.5s ease-out;
}

.animate-scale-up[b-267sspfjzh] {
    animation: scale-up-b-267sspfjzh 0.5s ease-out;
}

.animate-shake[b-267sspfjzh] {
    animation: shake-b-267sspfjzh 0.5s ease-out;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.metajobs-layout[b-g1kb01lg9x] {
    display: flex;
    min-height: 100vh;
}

/* Desktop Navigation Rail */
.desktop-nav-rail[b-g1kb01lg9x] {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav-rail[b-g1kb01lg9x] {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80px;
        min-height: 100vh;
        background-color: var(--rz-base-50);
        border-right: 1px solid var(--rz-base-200);
        padding: 2rem 0;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 20;
        box-sizing: border-box;
    }

    .metajobs-main[b-g1kb01lg9x] {
        margin-left: 80px;
        width: calc(100% - 80px);
    }
}

.nav-rail-logo[b-g1kb01lg9x] {
    padding: 0.75rem;
    background-color: var(--rz-primary-lighter);
    border-radius: 12px;
    color: var(--rz-primary-dark);
    margin-bottom: 2rem;
}

.nav-rail-items[b-g1kb01lg9x] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 0 0.5rem;
}

.nav-rail-fab[b-g1kb01lg9x] {
    margin-top: auto;
    margin-bottom: 1rem;
    border-radius: 16px !important;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav[b-g1kb01lg9x] {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: var(--rz-base-100);
    border-top: 1px solid var(--rz-base-200);
    padding: 0 0.5rem;
    padding-bottom: env(safe-area-inset-bottom);
    z-index: 30;
}

@media (min-width: 768px) {
    .mobile-bottom-nav[b-g1kb01lg9x] {
        display: none;
    }
}

.mobile-fab-container[b-g1kb01lg9x] {
    position: relative;
}

.mobile-fab-container[b-g1kb01lg9x]  .rz-button {
    width: 56px;
    height: 56px;
    border-radius: 16px !important;
}

/* Main Content */
.metajobs-main[b-g1kb01lg9x] {
    flex: 1;
    padding-bottom: 100px; /* Space for mobile nav */
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .metajobs-main[b-g1kb01lg9x] {
        padding-bottom: 0;
        margin-left: 80px;
        margin-right: 0;
        width: auto;
        max-width: 1280px;
    }
}

/* For larger screens, center the content within the space after navbar */
@media (min-width: 1440px) {
    .metajobs-main[b-g1kb01lg9x] {
        margin-left: auto;
        margin-right: auto;
        padding-left: 80px;
    }
}

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

    #blazor-error-ui .dismiss[b-g1kb01lg9x] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/MobileNavItem.razor.rz.scp.css */
.mobile-nav-item[b-qj35v1gv97] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.25rem;
    position: relative;
    text-decoration: none;
    flex: 1;
    color: var(--rz-base-500);
    transition: all 0.2s;
}

.mobile-nav-icon[b-qj35v1gv97] {
    padding: 0.25rem 1.25rem;
    border-radius: 16px;
    transition: background-color 0.2s;
}

.mobile-nav-item.active .mobile-nav-icon[b-qj35v1gv97] {
    background-color: var(--rz-primary-lighter);
}

.mobile-nav-item.active[b-qj35v1gv97] {
    color: var(--rz-primary-dark);
}

.mobile-nav-label[b-qj35v1gv97] {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.mobile-nav-badge[b-qj35v1gv97] {
    position: absolute;
    top: 0.25rem;
    right: 15%;
    background-color: var(--rz-danger);
    color: white;
    border-radius: 8px;
    padding: 0 4px;
    font-size: 0.625rem;
    font-weight: bold;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-o1dggafb9x] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-o1dggafb9x] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-o1dggafb9x] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-o1dggafb9x] {
    font-size: 1.1rem;
}

.bi[b-o1dggafb9x] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-o1dggafb9x] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-o1dggafb9x] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-o1dggafb9x] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-o1dggafb9x] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-o1dggafb9x] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-o1dggafb9x] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-o1dggafb9x] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-o1dggafb9x] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-o1dggafb9x] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-o1dggafb9x] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-o1dggafb9x] {
        padding-bottom: 1rem;
    }

    .nav-item[b-o1dggafb9x]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-o1dggafb9x]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-o1dggafb9x]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-o1dggafb9x] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-o1dggafb9x] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-o1dggafb9x] {
        display: none;
    }

    .nav-scrollable[b-o1dggafb9x] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

.bi-building-nav-menu[b-o1dggafb9x] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-building' viewBox='0 0 16 16'%3E%3Cpath d='M4 2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1Zm3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1Zm3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1ZM4 5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1ZM7.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1Zm2.5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1ZM4.5 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1Zm2.5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1Zm3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1Z'/%3E%3Cpath d='M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V1Zm11 0H3v14h3v-2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5V15h3V1Z'/%3E%3C/svg%3E");
}

.bi-briefcase-nav-menu[b-o1dggafb9x] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-briefcase' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 1A1.5 1.5 0 0 0 5 2.5V3H1.5A1.5 1.5 0 0 0 0 4.5v8A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-8A1.5 1.5 0 0 0 14.5 3H11v-.5A1.5 1.5 0 0 0 9.5 1h-3zm0 1h3a.5.5 0 0 1 .5.5V3H6v-.5a.5.5 0 0 1 .5-.5zm1.886 6.914L15 7.151V12.5a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5V7.15l6.614 1.764a1.5 1.5 0 0 0 .772 0zM1.5 4h13a.5.5 0 0 1 .5.5v1.616L8.129 7.948a.5.5 0 0 1-.258 0L1 6.116V4.5a.5.5 0 0 1 .5-.5z'/%3E%3C/svg%3E");
}

.bi-people-nav-menu[b-o1dggafb9x] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-people' viewBox='0 0 16 16'%3E%3Cpath d='M15 14s1 0 1-1-1-4-5-4-5 3-5 4 1 1 1 1h8Zm-7.978-1A.2.2 0 0 1 7 12.996c.001-.264.167-1.03.76-1.72C8.312 10.629 9.282 10 11 10c1.717 0 2.687.63 3.24 1.276.593.69.758 1.457.76 1.72l-.008.002a.274.274 0 0 1-.014.002H7.022ZM11 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0ZM6.936 9.28a5.88 5.88 0 0 0-1.23-.247A7.35 7.35 0 0 0 5 9c-4 0-5 3-5 4 0 .667.333 1 1 1h4.216A2.238 2.238 0 0 1 5 13c0-1.01.377-2.042 1.09-2.904.243-.294.526-.569.846-.816ZM4.92 10A5.493 5.493 0 0 0 4 13H1c0-.26.164-1.03.76-1.724.545-.636 1.492-1.256 3.16-1.275ZM1.5 5.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z'/%3E%3C/svg%3E");
}
/* /Components/Layout/NavRailItem.razor.rz.scp.css */
.nav-rail-item[b-wnmxf3h251] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    text-decoration: none;
    color: var(--rz-base-500);
    position: relative;
    transition: all 0.2s;
    cursor: pointer;
}

.nav-rail-item-indicator[b-wnmxf3h251] {
    width: 56px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: background-color 0.2s;
}

.nav-rail-item:hover .nav-rail-item-indicator[b-wnmxf3h251] {
    background-color: var(--rz-base-100);
}

.nav-rail-item.active .nav-rail-item-indicator[b-wnmxf3h251] {
    background-color: var(--rz-primary-lighter);
}

.nav-rail-item.active[b-wnmxf3h251] {
    color: var(--rz-primary-dark);
}

.nav-rail-item-label[b-wnmxf3h251] {
    font-size: 0.625rem;
    font-weight: 500;
}

.nav-rail-badge[b-wnmxf3h251] {
    position: absolute;
    top: 4px;
    right: 8px;
    background-color: var(--rz-danger);
    color: white;
    border-radius: 8px;
    padding: 0 4px;
    font-size: 0.625rem;
    font-weight: bold;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-3s79npxky0],
.components-reconnect-repeated-attempt-visible[b-3s79npxky0],
.components-reconnect-failed-visible[b-3s79npxky0],
.components-pause-visible[b-3s79npxky0],
.components-resume-failed-visible[b-3s79npxky0],
.components-rejoining-animation[b-3s79npxky0] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

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

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

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

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Admin/AllCampaigns.razor.rz.scp.css */
.campaigns-view[b-xluldnimga] {
    max-width: 1280px;
    margin: 0 auto;
}

.campaigns-header[b-xluldnimga] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .campaigns-header[b-xluldnimga] {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.campaigns-title[b-xluldnimga] {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a; /* slate-900 */
}

.campaigns-filter[b-xluldnimga] {
    width: 100%;
}

@media (min-width: 768px) {
    .campaigns-filter[b-xluldnimga] {
        width: auto;
    }
}
/* /Components/Pages/Admin/Approvals.razor.rz.scp.css */
.approvals-view[b-pzlo6xm6p7] {
    max-width: 1280px;
    margin: 0 auto;
}

.approvals-header[b-pzlo6xm6p7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.approvals-title[b-pzlo6xm6p7] {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a; /* slate-900 */
    margin-bottom: 0.25rem;
}

.approvals-subtitle[b-pzlo6xm6p7] {
    font-size: 0.875rem;
    color: #64748b; /* slate-500 */
}

/* === EMPTY STATE === */
.approvals-empty[b-pzlo6xm6p7] {
    background: white;
    border: 1px solid #e7e5e4;
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
}

.approvals-empty-icon[b-pzlo6xm6p7] {
    margin-bottom: 1rem;
}

.approvals-empty-title[b-pzlo6xm6p7] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a; /* slate-900 */
    margin-bottom: 0.5rem;
}

.approvals-empty-text[b-pzlo6xm6p7] {
    color: #64748b; /* slate-500 */
}

/* === APPROVALS LIST === */
.approvals-list[b-pzlo6xm6p7] {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

[b-pzlo6xm6p7] .approval-card {
    padding: 1.5rem !important;
    border-radius: 24px !important;
    background: white;
    border: 1px solid #e7e5e4 !important;
    transition: all 0.2s;
}

.approval-card-content[b-pzlo6xm6p7] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .approval-card-content[b-pzlo6xm6p7] {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.approval-card-main[b-pzlo6xm6p7] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.approval-icon[b-pzlo6xm6p7] {
    width: 3rem;
    height: 3rem;
    background-color: #fed7aa; /* orange-100 */
    color: #ea580c; /* orange-600 */
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.approval-info[b-pzlo6xm6p7] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approval-title[b-pzlo6xm6p7] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a; /* slate-900 */
    margin: 0;
}

.approval-meta[b-pzlo6xm6p7] {
    font-size: 0.875rem;
    color: #64748b; /* slate-500 */
    margin: 0.25rem 0 0 0;
}

.approval-company[b-pzlo6xm6p7] {
    font-weight: 600;
    color: #44403c; /* stone-700 */
}

.approval-card-actions[b-pzlo6xm6p7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .approval-card-actions[b-pzlo6xm6p7] {
        justify-content: flex-end;
    }
}

.approval-budget[b-pzlo6xm6p7] {
    text-align: right;
}

.approval-budget-value[b-pzlo6xm6p7] {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a; /* slate-900 */
}

.approval-budget-time[b-pzlo6xm6p7] {
    font-size: 0.75rem;
    color: #a8a29e; /* stone-400 */
}

.approval-review-btn[b-pzlo6xm6p7] {
    white-space: nowrap;
}
/* /Components/Pages/Admin/Dashboard.razor.rz.scp.css */
.admin-dashboard[b-gt8fx8hnmo] {
    max-width: 1280px;
    margin: 0 auto;
}

.dashboard-title[b-gt8fx8hnmo] {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a; /* slate-900 */
    margin-bottom: 1.5rem;
}

/* === STATS GRID === */
.stats-grid[b-gt8fx8hnmo] {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

@media (min-width: 1024px) {
    .stats-grid[b-gt8fx8hnmo] {
        grid-template-columns: repeat(4, 1fr);
    }
}

[b-gt8fx8hnmo] .stat-card {
    padding: 1.5rem !important;
    border-radius: 24px !important;
    background: white;
    border: 1px solid #e7e5e4 !important;
}

[b-gt8fx8hnmo] .stat-card-highlight {
    background-color: #fff7ed !important; /* orange-50 */
    border-color: #fed7aa !important; /* orange-200 */
}

.stat-icon-wrapper[b-gt8fx8hnmo] {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.stat-icon[b-gt8fx8hnmo] {
    padding: 0.5rem;
    border-radius: 0.75rem;
}

.stat-pulse[b-gt8fx8hnmo] {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: #ef4444; /* red-500 */
    animation: pulse-b-gt8fx8hnmo 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-b-gt8fx8hnmo {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.stat-value[b-gt8fx8hnmo] {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a; /* slate-900 */
    margin-bottom: 0.25rem;
}

.stat-label[b-gt8fx8hnmo] {
    font-size: 0.875rem;
    color: #64748b; /* slate-500 */
}

/* === BOTTOM GRID === */
.dashboard-bottom-grid[b-gt8fx8hnmo] {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .dashboard-bottom-grid[b-gt8fx8hnmo] {
        grid-template-columns: repeat(2, 1fr);
    }
}

[b-gt8fx8hnmo] .dashboard-card {
    padding: 1.5rem !important;
    border-radius: 24px !important;
    background: white;
    border: 1px solid #e7e5e4 !important;
}

.card-title[b-gt8fx8hnmo] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a; /* slate-900 */
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.health-indicator[b-gt8fx8hnmo] {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: #10b981; /* green-500 */
    animation: pulse-b-gt8fx8hnmo 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* === HEALTH LIST === */
.health-list[b-gt8fx8hnmo] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.health-item[b-gt8fx8hnmo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f5f5f4; /* stone-100 */
}

.health-item:last-child[b-gt8fx8hnmo] {
    border-bottom: none;
    padding-bottom: 0;
}

.health-item-label[b-gt8fx8hnmo] {
    font-size: 0.875rem;
    color: #57534e; /* stone-600 */
}

.health-item-status[b-gt8fx8hnmo] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #10b981; /* green-600 */
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* === ACTIVITY LIST === */
.activity-list[b-gt8fx8hnmo] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item[b-gt8fx8hnmo] {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.875rem;
}

.activity-main[b-gt8fx8hnmo] {
    flex: 1;
    line-height: 1.4;
}

.activity-user[b-gt8fx8hnmo] {
    font-weight: 700;
    color: #0f172a; /* slate-900 */
}

.activity-action[b-gt8fx8hnmo] {
    color: #57534e; /* stone-600 */
}

.activity-time[b-gt8fx8hnmo] {
    color: #a8a29e; /* stone-400 */
    font-size: 0.75rem;
    white-space: nowrap;
    margin-left: auto;
}

.activity-empty[b-gt8fx8hnmo] {
    padding: 2rem;
    text-align: center;
    color: #64748b; /* slate-500 */
    font-size: 0.875rem;
}
/* /Components/Pages/Admin/Users.razor.rz.scp.css */
.users-view[b-0tlklwf0sr] {
    max-width: 1280px;
    margin: 0 auto;
}

.users-header[b-0tlklwf0sr] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .users-header[b-0tlklwf0sr] {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.users-title[b-0tlklwf0sr] {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a; /* slate-900 */
}

[b-0tlklwf0sr] .user-company {
    font-size: 1rem;
    font-weight: bold;
}
/* /Components/Pages/Candidates/Dashboard.razor.rz.scp.css */
.candidates-container[b-xzmsh4kb4u] {
    padding: 1rem;
}

@media (min-width: 768px) {
    .candidates-container[b-xzmsh4kb4u] {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .candidates-container[b-xzmsh4kb4u] {
        padding: 2rem;
    }
}

/* Header */
.candidates-header[b-xzmsh4kb4u] {
    margin-bottom: 1.5rem;
}

.candidates-header-enhanced[b-xzmsh4kb4u] {
    margin-bottom: 1.5rem;
}

.header-row[b-xzmsh4kb4u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.candidates-title[b-xzmsh4kb4u] {
    font-size: 1.875rem;
    font-weight: 400;
    color: var(--rz-base-800);
    margin: 0;
}

.mobile-filter-toggle[b-xzmsh4kb4u] {
    display: flex;
}

@media (min-width: 768px) {
    .mobile-filter-toggle[b-xzmsh4kb4u] {
        display: none !important;
    }
}

/* Filters Container */
.filters-container[b-xzmsh4kb4u] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filters-container.hidden-mobile[b-xzmsh4kb4u] {
    display: none;
}

@media (min-width: 768px) {
    .filters-container.hidden-mobile[b-xzmsh4kb4u] {
        display: flex;
    }
}

.filters-container.visible[b-xzmsh4kb4u] {
    display: flex;
    animation: fadeIn-b-xzmsh4kb4u 0.3s ease-in-out;
}

@keyframes fadeIn-b-xzmsh4kb4u {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Filter Row */
.filter-row[b-xzmsh4kb4u] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .filter-row[b-xzmsh4kb4u] {
        flex-direction: row;
    }
}

[b-xzmsh4kb4u] .search-input {
    flex: 1;
    padding: 0.625rem 1rem !important;
    border: 1px solid var(--rz-base-200) !important;
    border-radius: 12px !important;
    background-color: white !important;
}

[b-xzmsh4kb4u] .search-input:focus {
    border-color: var(--rz-primary) !important;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1) !important;
}

.search-icon[b-xzmsh4kb4u] {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rz-base-400);
}

[b-xzmsh4kb4u] .status-dropdown {
    width: 100%;
    border: 1px solid var(--rz-base-200) !important;
    border-radius: 12px !important;
    background-color: white !important;
}

@media (min-width: 768px) {
    [b-xzmsh4kb4u] .status-dropdown {
        width: 12rem;
    }
}

[b-xzmsh4kb4u] .status-dropdown:focus {
    border-color: var(--rz-primary) !important;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1) !important;
}

[b-xzmsh4kb4u] .rz-dropdown-items-wrapper {
    max-height: 300px;
}

.rz-dropdown-items-wrapper[b-xzmsh4kb4u] {
    max-height: 300px;
}

/* Filter Chips */
.filter-chips[b-xzmsh4kb4u] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.filter-chips[b-xzmsh4kb4u]::-webkit-scrollbar {
    display: none;
}

[b-xzmsh4kb4u] .filter-chip {
    flex-shrink: 0;
    border-radius: 12px !important;
    font-weight: 500 !important;
    background-color: white !important;
    border: 1px solid var(--rz-base-200) !important;
    color: var(--rz-base-700) !important;
}

[b-xzmsh4kb4u] .filter-chip.rz-variant-filled {
    background-color: var(--rz-primary) !important;
    border-color: var(--rz-primary) !important;
    color: white !important;
}

/* Master-Detail Container */
.master-detail-container[b-xzmsh4kb4u] {
    display: flex;
    gap: 1.5rem;
    border-radius: 32px;
    overflow: hidden;
    background-color: rgba(245, 245, 244, 0.5);
    border: 1px solid var(--rz-base-200);
    min-height: calc(100vh - 16rem);
}

@media (max-width: 1023px) {
    .master-detail-container[b-xzmsh4kb4u] {
        border-radius: 24px;
        min-height: calc(100vh - 14rem);
    }
}

/* Candidate List (Master) */
.candidate-list[b-xzmsh4kb4u] {
    flex: 1;
    overflow-y: auto;
    background-color: white;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .candidate-list[b-xzmsh4kb4u] {
        flex: 0 0 33.333%;
    }
}

.hidden-mobile[b-xzmsh4kb4u] {
    display: none;
}

@media (min-width: 1024px) {
    .hidden-mobile[b-xzmsh4kb4u] {
        display: block;
    }
}

/* Candidate List Item */
.candidate-item[b-xzmsh4kb4u] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
}

.candidate-item:hover[b-xzmsh4kb4u] {
    background-color: var(--rz-base-50);
}

.candidate-item.active[b-xzmsh4kb4u] {
    background-color: #f0fdfa;
}

.candidate-avatar[b-xzmsh4kb4u] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rz-primary) 0%, var(--rz-primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.candidate-info[b-xzmsh4kb4u] {
    flex: 1;
    min-width: 0;
}

.candidate-name[b-xzmsh4kb4u] {
    font-weight: 500;
    color: var(--rz-base-900);
    margin-bottom: 0.125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.candidate-meta[b-xzmsh4kb4u] {
    font-size: 0.875rem;
    color: var(--rz-base-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.candidate-time[b-xzmsh4kb4u] {
    font-size: 0.75rem;
    color: var(--rz-base-400);
    flex-shrink: 0;
}

[b-xzmsh4kb4u] .candidate-badge {
    margin-top: 0.625rem;
}

/* Candidate Detail Panel */
.candidate-detail[b-xzmsh4kb4u] {
    flex: 1;
    background-color: var(--rz-base-50);
    overflow-y: auto;
    padding: 2rem;
}

.candidate-detail.empty[b-xzmsh4kb4u] {
    display: none;
}

@media (min-width: 1024px) {
    .candidate-detail.empty[b-xzmsh4kb4u] {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.detail-empty[b-xzmsh4kb4u] {
    text-align: center;
    color: var(--rz-base-400);
}

.detail-empty p[b-xzmsh4kb4u] {
    margin-top: 1rem;
    font-size: 0.875rem;
}

/* Mobile Back Button */
.back-button-mobile[b-xzmsh4kb4u] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--rz-base-600);
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
}

.back-button-mobile:hover[b-xzmsh4kb4u] {
    color: var(--rz-primary);
}

@media (min-width: 1024px) {
    .back-button-mobile[b-xzmsh4kb4u] {
        display: none;
    }
}

/* Detail Header */
.detail-header[b-xzmsh4kb4u] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--rz-base-200);
}

.detail-avatar[b-xzmsh4kb4u] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rz-primary) 0%, var(--rz-primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-header-info[b-xzmsh4kb4u] {
    flex: 1;
    min-width: 0;
}

.detail-name[b-xzmsh4kb4u] {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--rz-base-900);
    margin: 0 0 0.25rem 0;
}

.detail-job[b-xzmsh4kb4u] {
    color: var(--rz-base-500);
    margin: 0;
}

/* Detail Sections */
.detail-section[b-xzmsh4kb4u] {
    margin-bottom: 2rem;
}

.section-title[b-xzmsh4kb4u] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rz-base-700);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Contact Info Cards */
.contact-info-cards[b-xzmsh4kb4u] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contact-info-cards[b-xzmsh4kb4u] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info-card[b-xzmsh4kb4u] {
    background-color: white;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid var(--rz-base-200);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info-card a[b-xzmsh4kb4u] {
    color: var(--rz-primary);
    text-decoration: none;
    font-weight: 500;
    word-break: break-all;
}

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

.contact-info-card i[b-xzmsh4kb4u] {
    background-color: var(--rz-base-100);
    padding: 1.2rem;
    border-radius: 30%;
}

/* Status SelectBar */
[b-xzmsh4kb4u] .status-select-bar {
    width: 100%;
}


[b-xzmsh4kb4u] .status-select-bar .rz-selectbar-item {
    flex: 1;
    min-width: 80px;
    border-radius: 12px !important;
    padding: 0.75rem 1rem !important;
    font-weight: 500 !important;
}

[b-xzmsh4kb4u] .status-select-bar .rz-button {
    flex: 1;
    text-align: center;
}

/* Info Cards */
.info-cards[b-xzmsh4kb4u] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.info-card[b-xzmsh4kb4u] {
    background-color: white;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid var(--rz-base-200);
}

.info-card-label[b-xzmsh4kb4u] {
    font-size: 0.75rem;
    color: var(--rz-base-500);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-card-value[b-xzmsh4kb4u] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--rz-base-900);
}

/* Answers Card */
.answers-card[b-xzmsh4kb4u] {
    background-color: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--rz-base-200);
}

.answer-item[b-xzmsh4kb4u] {
    padding: 1rem 0;
    border-bottom: 1px solid var(--rz-base-100);
}

.answer-item:last-child[b-xzmsh4kb4u] {
    border-bottom: none;
    padding-bottom: 0;
}

.answer-item:first-child[b-xzmsh4kb4u] {
    padding-top: 0;
}

.answer-question[b-xzmsh4kb4u] {
    font-size: 0.875rem;
    color: var(--rz-base-500);
    margin-bottom: 0.25rem;
}

.answer-value[b-xzmsh4kb4u] {
    font-weight: 500;
    color: var(--rz-base-900);
}

/* Private Notes */
.notes-section[b-xzmsh4kb4u] {
    background-color: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--rz-base-200);
}

.notes-header[b-xzmsh4kb4u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.notes-header .section-title[b-xzmsh4kb4u] {
    display: flex;
    justify-content: center;
    align-items: center
}

.note-saved-indicator[b-xzmsh4kb4u] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #16a34a; /* green-600 */
    animation: fadeIn-b-xzmsh4kb4u 0.3s ease-in-out;
}

@keyframes fadeIn-b-xzmsh4kb4u {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

[b-xzmsh4kb4u] .notes-textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #fafaf9; /* stone-50 */
    border: 1px solid #e7e5e4; /* stone-200 */
    border-radius: 12px;
    font-size: 0.875rem;
    min-height: 100px;
    resize: none;
    margin-bottom: 0.5rem;
}

[b-xzmsh4kb4u] .notes-textarea:focus {
    background-color: white;
    border-color: var(--rz-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.notes-actions[b-xzmsh4kb4u] {
    display: flex;
    justify-content: flex-end;
}

/* Contact Actions */
.contact-actions[b-xzmsh4kb4u] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

[b-xzmsh4kb4u] .contact-btn {
    border-radius: 12px !important;
    padding: 0.875rem 1rem !important;
    font-weight: 600 !important;
}

/* Empty State */
[b-xzmsh4kb4u] .empty-state-card {
    border-radius: 24px !important;
    padding: 0.5rem !important;
}

.no-candidates[b-xzmsh4kb4u] {
    padding: 2rem;
    text-align: center;
    color: var(--rz-base-500);
}

.no-candidates p[b-xzmsh4kb4u] {
    margin: 0 0 1rem 0;
}
/* /Components/Pages/Company/Settings.razor.rz.scp.css */
.settings-container[b-mywmhmx7nx] {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.settings-header[b-mywmhmx7nx] {
    margin-bottom: 2rem;
}

.settings-title[b-mywmhmx7nx] {
    font-size: 1.875rem;
    font-weight: 400;
    color: #1c1917; /* stone-900 */
    margin: 0;
}

.settings-subtitle[b-mywmhmx7nx] {
    color: #78716c; /* stone-500 */
    margin-top: 0.5rem;
    font-size: 1rem;
}

.settings-loading[b-mywmhmx7nx] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

[b-mywmhmx7nx] .settings-card {
    border-radius: 24px !important;
    border: 1px solid #e7e5e4 !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    padding: 0 !important;
    overflow: hidden;
}

.settings-section[b-mywmhmx7nx] {
    padding: 1.5rem 2rem;
}

@media (min-width: 768px) {
    .settings-section[b-mywmhmx7nx] {
        padding: 2rem 2rem;
    }
}

.section-title[b-mywmhmx7nx] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #292524; /* stone-800 */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.5rem 0;
}

.section-divider[b-mywmhmx7nx] {
    height: 1px;
    background-color: #f5f5f4; /* stone-100 */
    margin: 0 2rem;
}

.two-column-grid[b-mywmhmx7nx] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .two-column-grid[b-mywmhmx7nx] {
        grid-template-columns: 1fr 1fr;
    }
}

.settings-footer[b-mywmhmx7nx] {
    padding: 1.5rem 2rem;
    background-color: #fafaf9; /* stone-50 */
    border-top: 1px solid #e7e5e4;
    display: flex;
    justify-content: flex-end;
}

[b-mywmhmx7nx] .save-button {
    padding: 0.75rem 2rem !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

[b-mywmhmx7nx] .save-button:active {
    transform: scale(0.95);
}
/* /Components/Pages/Home.razor.rz.scp.css */
.dashboard-container[b-ek2jpezdde] {
    padding: 1rem;
}

@media (min-width: 768px) {
    .dashboard-container[b-ek2jpezdde] {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .dashboard-container[b-ek2jpezdde] {
        padding: 2rem;
    }
}

.dashboard-header[b-ek2jpezdde] {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
}

.dashboard-title[b-ek2jpezdde] {
    font-size: 1.875rem;
    font-weight: 400;
    color: var(--rz-base-800);
    margin: 0;
}

.dashboard-subtitle[b-ek2jpezdde] {
    color: var(--rz-base-500);
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.dashboard-spend[b-ek2jpezdde] {
    text-align: right;
    display: none;
}

@media (min-width: 768px) {
    .dashboard-spend[b-ek2jpezdde] {
        display: block;
    }
}

.spend-amount[b-ek2jpezdde] {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--rz-primary-dark);
}

.spend-label[b-ek2jpezdde] {
    font-size: 0.75rem;
    color: var(--rz-base-500);
}

/* Profile Alert Banner */
.profile-alert[b-ek2jpezdde] {
    background-color: rgba(254, 215, 170, 0.32); /* orange-100 */
    border: 1px solid #fed7aa;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.2s;
}

.profile-alert:hover[b-ek2jpezdde] {
    background-color: #fed7aa; /* orange-200 */
}

.profile-alert-content[b-ek2jpezdde] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-alert-title[b-ek2jpezdde] {
    font-size: 1rem;
    font-weight: 600;
    color: #9a3412; /* orange-800 */
    margin: 0 0 0.25rem 0;
}

.profile-alert-text[b-ek2jpezdde] {
    font-size: 0.875rem;
    color: #c2410c; /* orange-700 */
    margin: 0;
}

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

@media (min-width: 768px) {
    .stats-grid[b-ek2jpezdde] {
        grid-template-columns: repeat(4, 1fr);
    }
}

[b-ek2jpezdde] .stat-card {
    padding: 1.25rem !important;
    border-radius: 24px !important;
    position: relative;
    overflow: hidden;
}

[b-ek2jpezdde] .stat-card-primary {
    background-color: #134e4a !important;
    color: white !important;
    border: none !important;
}

.stat-card-primary[b-ek2jpezdde]  .stat-value,
.stat-card-primary .stat-value[b-ek2jpezdde] {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
    color: white;
}

.stat-card-primary[b-ek2jpezdde]  .stat-label,
.stat-card-primary .stat-label[b-ek2jpezdde] {
    color: #99f6e4 !important;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.decorative-circle[b-ek2jpezdde] {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 6rem;
    height: 6rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.stat-value[b-ek2jpezdde] {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: #292524;
}

.stat-label[b-ek2jpezdde] {
    font-size: 0.875rem;
    font-weight: 500;
    color: #78716c;
}

.stat-card-mobile[b-ek2jpezdde] {
    display: block;
}

@media (min-width: 768px) {
    .stat-card-mobile[b-ek2jpezdde] {
        display: none;
    }
}

/* Action Items */
.action-items-section[b-ek2jpezdde] {
    margin-bottom: 2rem;
}

.section-title[b-ek2jpezdde] {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--rz-base-800);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[b-ek2jpezdde] .action-items-card {
    border-radius: 24px !important;
    padding: 0.5rem !important;
}

.action-item[b-ek2jpezdde] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.action-item:hover[b-ek2jpezdde] {
    background-color: var(--rz-base-50);
}

.action-item-content[b-ek2jpezdde] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-icon[b-ek2jpezdde] {
    width: 48px;
    height: 48px;
    background-color: #fed7aa;
    color: #ea580c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-title[b-ek2jpezdde] {
    font-weight: 500;
    color: var(--rz-base-900);
    margin: 0 0 0.25rem 0;
}

.action-description[b-ek2jpezdde] {
    font-size: 0.875rem;
    color: var(--rz-base-500);
    margin: 0;
}

.no-actions[b-ek2jpezdde] {
    padding: 2rem;
    text-align: center;
    color: var(--rz-base-500);
}

.no-actions p[b-ek2jpezdde] {
    margin: 0;
}

/* Recent Jobs */
.recent-jobs-section[b-ek2jpezdde] {
    margin-bottom: 2rem;
}

.section-header[b-ek2jpezdde] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.jobs-preview-grid[b-ek2jpezdde] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .jobs-preview-grid[b-ek2jpezdde] {
        grid-template-columns: repeat(2, 1fr);
    }
}

[b-ek2jpezdde] .job-preview-card {
    border-radius: 24px !important;
    padding: 1.25rem !important;
    cursor: pointer;
}

.job-preview-content[b-ek2jpezdde] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-title[b-ek2jpezdde] {
    font-weight: 500;
    color: var(--rz-base-900);
    margin: 0 0 0.25rem 0;
}

.job-meta[b-ek2jpezdde] {
    font-size: 0.875rem;
    color: var(--rz-base-500);
    margin: 0;
}

/* Empty State */
[b-ek2jpezdde] .empty-state-card {
    border-radius: 24px !important;
    padding: 0.5rem !important;
}
/* /Components/Pages/Jobs/CreateJob.razor.rz.scp.css */
/* Wizard Overlay - Full Screen */
.wizard-overlay[b-bts31xb0lk] {
    position: fixed;
    inset: 0;
    background-color: var(--rz-base-background-color);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.wizard-overlay.centered[b-bts31xb0lk] {
    align-items: center;
    justify-content: center;
}

/* Wizard Header */
.wizard-header[b-bts31xb0lk] {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--rz-base-200);
    background-color: white;
    position: relative;
}

.wizard-close-btn[b-bts31xb0lk] {
    position: absolute !important;
    top: 1rem;
    left: 1rem;
}

/* Progress Indicators */
.wizard-progress[b-bts31xb0lk] {
    display: flex;
    gap: 0.5rem;
    max-width: 240px;
    margin: 0 auto;
    padding-top: 0.5rem;
}

.progress-bar[b-bts31xb0lk] {
    flex: 1;
    height: 4px;
    background-color: var(--rz-base-200);
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.progress-bar.active[b-bts31xb0lk] {
    background-color: var(--rz-primary);
}

/* Wizard Content */
.wizard-content[b-bts31xb0lk] {
    flex: 1;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.wizard-content-inner[b-bts31xb0lk] {
    max-width: 640px;
    margin: 0 auto;
}

.wizard-step[b-bts31xb0lk] {
    animation: fadeIn-b-bts31xb0lk 0.3s ease-in;
}

@keyframes fadeIn-b-bts31xb0lk {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step Header */
.step-header[b-bts31xb0lk] {
    text-align: center;
    margin-bottom: 2rem;
}

.step-title[b-bts31xb0lk] {
    font-size: 1.875rem;
    font-weight: 400;
    color: var(--rz-base-900);
    margin: 0 0 0.5rem 0;
}

.step-subtitle[b-bts31xb0lk] {
    color: var(--rz-base-500);
    margin: 0;
}

[b-bts31xb0lk] .wizard-input {
    width: 100%;
    padding: 0.875rem 1rem !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
}

[b-bts31xb0lk] .wizard-dropdown {
    width: 100%;
}

[b-bts31xb0lk] .wizard-dropdown .rz-dropdown {
    width: 100%;
    padding: 0.875rem 1rem !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
}

[b-bts31xb0lk] .wizard-input:focus,
[b-bts31xb0lk] .wizard-dropdown .rz-dropdown:focus {
    border-color: var(--rz-primary) !important;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1) !important;
}

/* Standard Fields Card */
.standard-fields-card[b-bts31xb0lk] {
    background-color: white;
    border: 1px solid var(--rz-base-200);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.standard-fields-header[b-bts31xb0lk] {
    padding: 1rem;
    background-color: var(--rz-base-50);
    border-bottom: 1px solid var(--rz-base-200);
    font-weight: 500;
    color: var(--rz-base-700);
    font-size: 0.875rem;
}

.standard-fields-list[b-bts31xb0lk] {
    padding: 1rem;
}

.standard-field-item[b-bts31xb0lk] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--rz-base-500);
}

.standard-field-item:not(:last-child)[b-bts31xb0lk] {
    border-bottom: 1px solid var(--rz-base-100);
}

/* Custom Questions */
.custom-questions-list[b-bts31xb0lk] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.custom-question-item[b-bts31xb0lk] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border: 1px solid var(--rz-base-200);
    border-radius: 16px;
    transition: all 0.2s;
    opacity: 0.6;
}

.custom-question-item.enabled[b-bts31xb0lk] {
    opacity: 1;
    border-color: var(--rz-primary);
    background-color: #f0fdfa;
}

.question-text[b-bts31xb0lk] {
    flex: 1;
    color: var(--rz-base-900);
}

.custom-question-item:not(.enabled) .question-text[b-bts31xb0lk] {
    color: var(--rz-base-500);
}

[b-bts31xb0lk] .question-checkbox {
    margin-left: auto;
}

/* Budget Card */
.budget-card[b-bts31xb0lk] {
    background-color: white;
    border: 1px solid var(--rz-base-200);
    border-radius: 32px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.budget-header[b-bts31xb0lk] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.budget-label[b-bts31xb0lk] {
    font-weight: 500;
    color: var(--rz-base-500);
}

.budget-amount[b-bts31xb0lk] {
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--rz-primary-dark);
}

[b-bts31xb0lk] .budget-slider {
    width: 100%;
    margin-bottom: 0.5rem;
}

[b-bts31xb0lk] .rz-slider .rz-slider-track {
    background-color: var(--rz-base-200);
    height: 8px;
    border-radius: 4px;
}

[b-bts31xb0lk] .rz-slider .rz-slider-range {
    background-color: var(--rz-primary);
}

[b-bts31xb0lk] .rz-slider .rz-slider-handle {
    width: 20px;
    height: 20px;
    background-color: var(--rz-primary);
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

[b-bts31xb0lk] .rz-slider .rz-slider-handle:hover,
[b-bts31xb0lk] .rz-slider .rz-slider-handle:active,
[b-bts31xb0lk] .rz-slider .rz-slider-handle:focus {
    width: 26px;
    height: 26px;
    transform: translate(-2px, -13px);
    background-color: var(--rz-primary);
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.budget-range[b-bts31xb0lk] {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--rz-base-400);
    font-weight: 500;
}

/* Estimate Card */
.estimate-card[b-bts31xb0lk] {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border: 1px solid #99f6e4;
    border-radius: 24px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.estimate-header[b-bts31xb0lk] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.estimate-title[b-bts31xb0lk] {
    font-weight: bold;
    color: var(--rz-primary-darker);
    margin: 0;
    font-size: 1rem;
}

.estimate-description[b-bts31xb0lk] {
    color: var(--rz-primary-dark);
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
}

.estimate-description strong[b-bts31xb0lk] {
    font-weight: 600;
}

.estimate-value[b-bts31xb0lk] {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--rz-primary-darker);
    margin-top: 0.75rem;
}

.estimate-unit[b-bts31xb0lk] {
    font-size: 1rem;
    font-weight: normal;
    opacity: 0.7;
}

/* Wizard Footer */
.wizard-footer[b-bts31xb0lk] {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--rz-base-200);
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

[b-bts31xb0lk] .wizard-footer-btn {
    padding: 0.75rem 2rem !important;
    border-radius: 12px !important;
    font-weight: 500 !important;
}

[b-bts31xb0lk] .wizard-next-btn {
    box-shadow: 0 4px 6px -1px rgba(15, 118, 110, 0.2) !important;
    transition: all 0.2s !important;
}

[b-bts31xb0lk] .wizard-next-btn:active {
    transform: scale(0.95) !important;
}

[b-bts31xb0lk] .wizard-next-btn:disabled {
    opacity: 0.5;
    box-shadow: none !important;
    cursor: not-allowed;
}

/* Empty State */
[b-bts31xb0lk] .wizard-empty-card {
    max-width: 500px;
    margin: 2rem auto;
}

.wizard-empty-content[b-bts31xb0lk] {
    text-align: center;
    padding: 2rem;
}

.wizard-empty-content p[b-bts31xb0lk] {
    margin-bottom: 1.5rem;
    color: var(--rz-base-600);
}

/* ========================================
   PROGRESS VIEW
   ======================================== */

.progress-view[b-bts31xb0lk] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    height: 100%;
    animation: fadeIn-b-bts31xb0lk 0.3s ease-in;
}

.progress-content[b-bts31xb0lk] {
    max-width: 28rem;
    width: 100%;
    text-align: center;
}

/* Progress Icon with Glow */
.progress-icon-wrapper[b-bts31xb0lk] {
    position: relative;
    display: inline-block;
    padding: 1rem;
    background-color: #f0fdfa;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.progress-icon-glow[b-bts31xb0lk] {
    position: absolute;
    inset: 0;
    background-color: #99f6e4;
    border-radius: 50%;
    filter: blur(2rem);
    opacity: 0.3;
    animation: pulse-b-bts31xb0lk 2s ease-in-out infinite;
}

@keyframes pulse-b-bts31xb0lk {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

.progress-icon[b-bts31xb0lk] {
    position: relative;
    z-index: 1;
    animation: pulse-b-bts31xb0lk 2s ease-in-out infinite;
}

.progress-title[b-bts31xb0lk] {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--rz-base-900);
    margin: 0 0 0.5rem 0;
}

.progress-subtitle[b-bts31xb0lk] {
    color: var(--rz-base-500);
    margin: 0 0 2rem 0;
}

/* Progress Steps Card */
.progress-steps-card[b-bts31xb0lk] {
    background-color: white;
    border: 1px solid var(--rz-base-200);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.progress-step-item[b-bts31xb0lk] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.progress-step-item:not(:last-child)[b-bts31xb0lk] {
    border-bottom: 1px solid var(--rz-base-100);
}

.progress-step-indicator[b-bts31xb0lk] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.progress-step-indicator.done[b-bts31xb0lk] {
    background-color: #dcfce7;
    color: #16a34a;
}

.progress-step-indicator.active[b-bts31xb0lk] {
    background-color: #f0fdfa;
    color: var(--rz-primary-dark);
    transform: scale(1.1);
}

.progress-step-indicator.pending[b-bts31xb0lk] {
    background-color: var(--rz-base-100);
    color: var(--rz-base-300);
}

.progress-step-dot[b-bts31xb0lk] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--rz-base-300);
}

.progress-step-label[b-bts31xb0lk] {
    flex: 1;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--rz-base-400);
    transition: color 0.3s ease;
}

.progress-step-label.active[b-bts31xb0lk] {
    color: var(--rz-base-900);
}

/* ========================================
   SUCCESS VIEW
   ======================================== */

.success-view[b-bts31xb0lk] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    height: 100%;
    animation: scaleUp-b-bts31xb0lk 0.4s ease-out;
}

@keyframes scaleUp-b-bts31xb0lk {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-content[b-bts31xb0lk] {
    max-width: 28rem;
    width: 100%;
    text-align: center;
}

/* Success Icon with Glow */
.success-icon-wrapper[b-bts31xb0lk] {
    position: relative;
    display: inline-block;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.success-icon-glow[b-bts31xb0lk] {
    position: absolute;
    inset: 0;
    background-color: #86efac;
    border-radius: 50%;
    filter: blur(3rem);
    opacity: 0.2;
    animation: pulse-b-bts31xb0lk 2s ease-in-out infinite;
}

.success-icon[b-bts31xb0lk] {
    position: relative;
    z-index: 1;
}

.success-title[b-bts31xb0lk] {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--rz-base-900);
    margin: 0 0 0.75rem 0;
}

.success-message[b-bts31xb0lk] {
    font-size: 1.125rem;
    color: var(--rz-base-500);
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.success-message strong[b-bts31xb0lk] {
    color: var(--rz-base-800);
    font-weight: 600;
}

/* Success Info Card */
.success-info-card[b-bts31xb0lk] {
    background-color: #dbeafe;
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.success-info-header[b-bts31xb0lk] {
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.success-info-text[b-bts31xb0lk] {
    font-size: 0.875rem;
    color: #1e40af;
    margin: 0;
    line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .wizard-header[b-bts31xb0lk],
    .wizard-footer[b-bts31xb0lk] {
        padding: 1rem;
    }

    .wizard-content[b-bts31xb0lk] {
        padding: 1.5rem 1rem;
    }

    .step-title[b-bts31xb0lk] {
        font-size: 1.5rem;
    }

    .budget-amount[b-bts31xb0lk] {
        font-size: 1.75rem;
    }

    .estimate-value[b-bts31xb0lk] {
        font-size: 1.5rem;
    }

    /* Progress View Mobile */
    .progress-view[b-bts31xb0lk],
    .success-view[b-bts31xb0lk] {
        padding: 1rem;
    }

    .progress-title[b-bts31xb0lk],
    .success-title[b-bts31xb0lk] {
        font-size: 1.25rem;
    }

    .success-icon-wrapper[b-bts31xb0lk] {
        width: 6rem;
        height: 6rem;
    }

    .success-message[b-bts31xb0lk] {
        font-size: 1rem;
    }
}

/* ========================================
   JOB DETAILS CARD
   ======================================== */

[b-bts31xb0lk] .job-details-card {
    border-radius: 24px !important;
    border: 1px solid #e7e5e4 !important;
    padding: 1.5rem !important;
}

.card-header[b-bts31xb0lk] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #115e59; /* teal-800 */
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* ========================================
   TARGET AUDIENCE SECTION
   ======================================== */

[b-bts31xb0lk] .target-audience-card {
    border-radius: 24px !important;
    border: 1px solid #e7e5e4 !important;
    padding: 1.5rem !important;
}

.target-header[b-bts31xb0lk] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #115e59; /* teal-800 */
    margin-bottom: 1rem;
    font-size: 1rem;
}

.targeting-field[b-bts31xb0lk] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.field-label[b-bts31xb0lk] {
    font-size: 0.875rem;
    font-weight: 500;
    color: #44403c; /* stone-700 */
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Radius Slider */
.slider-header[b-bts31xb0lk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-badge[b-bts31xb0lk] {
    font-weight: 700;
    color: #115e59;
    background-color: #f0fdfa; /* teal-50 */
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
}

[b-bts31xb0lk] .target-slider {
    width: 100%;
}

.slider-range[b-bts31xb0lk] {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #a8a29e; /* stone-400 */
    margin-top: 0.25rem;
}

/* Gender Select Bar */
[b-bts31xb0lk] .rz-selectbar {
    width: 100%;
    background-color: #f5f5f4 !important; /* stone-100 */
    padding: 0.25rem !important;
    border-radius: 12px !important;
    border: 1px solid #e7e5e4 !important; /* stone-200 */
}

[b-bts31xb0lk] .rz-selectbar .rz-button {
    border-radius: 10px !important;
    padding: 0.625rem 1.25rem !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    text-transform: capitalize !important;
    border: none !important;
    min-width: 80px !important;
    flex: 1 !important;
    text-align: center !important;
}

[b-bts31xb0lk] .rz-selectbar .rz-state-active {
    background-color: white !important;
    color: #1c1917 !important; /* stone-900 */
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    font-weight: 600 !important;
}

[b-bts31xb0lk] .rz-selectbar .rz-button:not(.rz-state-active) {
    color: #78716c !important; /* stone-500 */
    background-color: transparent !important;
}

[b-bts31xb0lk] .rz-selectbar .rz-button:not(.rz-state-active):hover {
    font-weight: 600 !important;
}

/* Age Range Inputs */
.age-range-inputs[b-bts31xb0lk] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.age-input-wrapper[b-bts31xb0lk] {
    flex: 1;
    position: relative;
}

[b-bts31xb0lk] .age-input {
    width: 100%;
    background-color: #fafaf9 !important; /* stone-50 */
    border: 1px solid #e7e5e4 !important; /* stone-200 */
    border-radius: 12px !important;
    text-align: center !important;
    font-weight: 700 !important;
    color: #292524 !important; /* stone-800 */
}

[b-bts31xb0lk] .age-input:focus {
    border-color: var(--rz-primary) !important;
    outline: none !important;
}

.age-label[b-bts31xb0lk] {
    position: absolute;
    top: -8px;
    left: 12px;
    background-color: white;
    padding: 0 4px;
    font-size: 10px;
    font-weight: 700;
    color: #a8a29e; /* stone-400 */
    text-transform: uppercase;
    border-radius: 10px;
}

.age-separator[b-bts31xb0lk] {
    color: #d6d3d1; /* stone-300 */
    font-weight: 700;
}

/* Duration Selection */
.duration-presets[b-bts31xb0lk] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

[b-bts31xb0lk] .duration-preset-btn {
    border-radius: 12px !important;
    padding: 0.5rem 1rem !important;
    font-weight: 500 !important;
    font-size: 0.875rem !important;
    transition: all 0.2s !important;
}

.duration-custom[b-bts31xb0lk] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #fafaf9; /* stone-50 */
    padding: 0.75rem;
    border-radius: 12px;
    border: 1px solid #e7e5e4; /* stone-200 */
}

[b-bts31xb0lk] .duration-control-btn {
    padding: 0.5rem !important;
    border-radius: 8px !important;
    background-color: white !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    color: #57534e !important; /* stone-600 */
}

[b-bts31xb0lk] .duration-control-btn:hover {
    color: #115e59 !important; /* teal-700 */
}

.duration-display[b-bts31xb0lk] {
    flex: 1;
    text-align: center;
    font-weight: 700;
    color: #292524; /* stone-800 */
}

/* ====================================
   Cost Summary Card
   ==================================== */

[b-bts31xb0lk] .cost-summary-card {
    border-radius: 24px !important;
    padding: 1.5rem !important;
    border: 1px solid #e7e5e4 !important; /* stone-200 */
    background-color: white !important;
}

.summary-row[b-bts31xb0lk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
}

.summary-row span:first-child[b-bts31xb0lk] {
    color: #78716c; /* stone-500 */
}

.summary-row span:last-child[b-bts31xb0lk] {
    font-weight: 600;
    color: #292524; /* stone-800 */
}

.summary-divider[b-bts31xb0lk] {
    height: 1px;
    background-color: #e7e5e4; /* stone-200 */
    margin: 0.5rem 0;
}

.summary-total[b-bts31xb0lk] {
    font-size: 1.125rem;
    padding-top: 1rem;
}

.summary-total span:first-child[b-bts31xb0lk] {
    color: #292524; /* stone-800 */
    font-weight: 600;
}

.summary-total span:last-child[b-bts31xb0lk] {
    color: #0f766e; /* teal-700 */
    font-weight: 700;
    font-size: 1.25rem;
}

/* ====================================
   Payment Method Selection
   ==================================== */

.payment-section[b-bts31xb0lk] {
    margin-top: 1.5rem;
}

.payment-title[b-bts31xb0lk] {
    font-size: 1rem;
    font-weight: 600;
    color: #292524; /* stone-800 */
    margin: 0 0 1rem 0;
}

.payment-methods[b-bts31xb0lk] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-option-content[b-bts31xb0lk] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid #e7e5e4; /* stone-200 */
    background-color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-option-content:hover[b-bts31xb0lk] {
    border-color: #0f766e; /* teal-700 */
    background-color: #f0fdfa; /* teal-50 */
}

.payment-option-content.selected[b-bts31xb0lk] {
    border-color: #0f766e; /* teal-700 */
    background-color: #f0fdfa; /* teal-50 */
}

.payment-icon[b-bts31xb0lk] {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #f0fdfa; /* teal-50 */
    color: #0f766e; /* teal-700 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.payment-option-content.selected .payment-icon[b-bts31xb0lk] {
    background-color: #ccfbf1; /* teal-100 */
}

.payment-info[b-bts31xb0lk] {
    flex: 1;
    min-width: 0;
}

.payment-name[b-bts31xb0lk] {
    font-weight: 600;
    color: #292524; /* stone-800 */
    margin-bottom: 0.25rem;
}

.payment-desc[b-bts31xb0lk] {
    font-size: 0.875rem;
    color: #78716c; /* stone-500 */
}

.payment-check[b-bts31xb0lk] {
    flex-shrink: 0;
    color: #0f766e; /* teal-700 */
    font-size: 24px;
}

/* Payment Option Disabled */
.payment-option-disabled[b-bts31xb0lk] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid #e7e5e4; /* stone-200 */
    background-color: #fafaf9; /* stone-50 */
    opacity: 0.6;
    cursor: not-allowed;
}

.payment-option-disabled .payment-icon[b-bts31xb0lk] {
    background-color: #e7e5e4; /* stone-200 */
    color: #78716c; /* stone-500 */
}

.payment-option-disabled .payment-name[b-bts31xb0lk] {
    color: #78716c; /* stone-500 */
}

.payment-option-disabled .payment-desc[b-bts31xb0lk] {
    color: #a8a29e; /* stone-400 */
}
/* /Components/Pages/Jobs/JobDetail.razor.rz.scp.css */
/* Job Detail Container */
.job-detail-container[b-ufrnvv4l9x] {
    padding: 1rem;
    animation: fade-in-b-ufrnvv4l9x 0.3s ease-in-out;
}

@media (min-width: 768px) {
    .job-detail-container[b-ufrnvv4l9x] {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .job-detail-container[b-ufrnvv4l9x] {
        padding: 2rem;
    }
}

@keyframes fade-in-b-ufrnvv4l9x {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Header */
.job-detail-header[b-ufrnvv4l9x] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

[b-ufrnvv4l9x] .back-btn {
    flex-shrink: 0;
    padding: 0.5rem !important;
    border-radius: 12px !important;
    border: 1px solid var(--rz-base-200) !important;
    background-color: white !important;
    color: var(--rz-base-500) !important;
}

[b-ufrnvv4l9x] .back-btn:hover {
    background-color: var(--rz-base-50) !important;
}

.header-info[b-ufrnvv4l9x] {
    flex: 1;
    min-width: 0;
}

.header-title-row[b-ufrnvv4l9x] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.job-detail-title[b-ufrnvv4l9x] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rz-base-900);
    margin: 0;
}

@media (min-width: 768px) {
    .job-detail-title[b-ufrnvv4l9x] {
        font-size: 1.875rem;
    }
}

[b-ufrnvv4l9x] .status-badge {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: 9999px !important;
}

.status-badge.status-ended[b-ufrnvv4l9x] {
    background-color: var(--rz-base-200) !important;
    color: var(--rz-base-600) !important;
}

.status-badge.status-paused[b-ufrnvv4l9x] {
    background-color: #fef3c7 !important; /* yellow-100 */
    color: #92400e !important; /* yellow-800 */
}

.status-badge.status-active[b-ufrnvv4l9x] {
    background-color: #dcfce7 !important; /* green-100 */
    color: #15803d !important; /* green-700 */
}

.job-detail-location[b-ufrnvv4l9x] {
    font-size: 0.875rem;
    color: var(--rz-base-500);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
}

.header-actions[b-ufrnvv4l9x] {
    display: flex;
    gap: 0.5rem;
}

.hidden-mobile[b-ufrnvv4l9x] {
    display: none;
}

@media (min-width: 768px) {
    .hidden-mobile[b-ufrnvv4l9x] {
        display: flex;
    }
}

[b-ufrnvv4l9x] .pause-resume-btn {
    border-radius: 12px !important;
    padding: 0.5rem 1rem !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
}

[b-ufrnvv4l9x] .renew-btn {
    border-radius: 12px !important;
    padding: 0.5rem 1rem !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

/* Main Grid */
.job-detail-grid[b-ufrnvv4l9x] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .job-detail-grid[b-ufrnvv4l9x] {
        grid-template-columns: 2fr 1fr;
    }
}

.job-detail-main[b-ufrnvv4l9x] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.job-detail-sidebar[b-ufrnvv4l9x] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Stats Row */
.stats-row[b-ufrnvv4l9x] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

[b-ufrnvv4l9x] .stat-card {
    border-radius: 24px !important;
    padding: 1.25rem !important;
    text-align: center;
}

[b-ufrnvv4l9x] .stat-card-primary {
    background-color: #f0fdfa !important; /* teal-50 */
    border-color: #99f6e4 !important; /* teal-100 */
}

.stat-value[b-ufrnvv4l9x] {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--rz-base-800);
    margin-bottom: 0.25rem;
}

.stat-card-primary .stat-value[b-ufrnvv4l9x] {
    color: #115e59; /* teal-800 */
}

.stat-label[b-ufrnvv4l9x] {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--rz-base-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-card-primary .stat-label[b-ufrnvv4l9x] {
    color: #0f766e; /* teal-600 */
}

/* Performance Chart */
[b-ufrnvv4l9x] .performance-card {
    border-radius: 24px !important;
    padding: 1.5rem !important;
}

.performance-header[b-ufrnvv4l9x] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.performance-title[b-ufrnvv4l9x] {
    font-weight: 700;
    color: var(--rz-base-900);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.performance-period[b-ufrnvv4l9x] {
    font-size: 0.75rem;
    color: var(--rz-base-400);
    background-color: var(--rz-base-100);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
}

.chart-container[b-ufrnvv4l9x] {
    height: 12rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 0.5rem;
}

.chart-bar[b-ufrnvv4l9x] {
    flex: 1;
    height: 100%;
    background-color: #ccfbf1; /* teal-100 */
    border-radius: 8px 8px 0 0;
    position: relative;
}

.chart-bar-value[b-ufrnvv4l9x] {
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

.chart-bar-fill[b-ufrnvv4l9x] {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #14b8a6; /* teal-500 */
    border-radius: 8px 8px 0 0;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-bar:hover .chart-bar-fill[b-ufrnvv4l9x] {
    background-color: #0d9488; /* teal-600 */
}

.chart-labels[b-ufrnvv4l9x] {
    display: flex;
    gap: 1rem;
    padding: 0 0.5rem;
    font-size: 0.75rem;
    color: var(--rz-base-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.75rem;
}

.chart-labels span[b-ufrnvv4l9x] {
    flex: 1;
    text-align: center;
}

/* Screening Questions */
[b-ufrnvv4l9x] .questions-card {
    border-radius: 24px !important;
    padding: 1.5rem !important;
}

.questions-title[b-ufrnvv4l9x] {
    font-weight: 700;
    color: var(--rz-base-900);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.questions-list[b-ufrnvv4l9x] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.question-item[b-ufrnvv4l9x] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 12px;
    border: 1px solid var(--rz-base-200);
}

.question-standard[b-ufrnvv4l9x] {
    background-color: var(--rz-base-50);
    border: 1px solid var(--rz-base-100);
}

.question-icon[b-ufrnvv4l9x] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rz-base-400);
}

.question-standard .question-icon[b-ufrnvv4l9x] {
    background-color: white;
}

.question-text[b-ufrnvv4l9x] {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--rz-base-600);
}

.question-standard .question-text[b-ufrnvv4l9x] {
    color: var(--rz-base-600);
}

.question-info[b-ufrnvv4l9x] {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.question-subtext[b-ufrnvv4l9x] {
    font-size: 0.75rem;
    color: var(--rz-base-400);
}

/* Targeting Card (Dark) */
.targeting-card[b-ufrnvv4l9x] {
    background-color: #292524; /* stone-900 */
    color: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.targeting-title[b-ufrnvv4l9x] {
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.targeting-section[b-ufrnvv4l9x] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.targeting-item[b-ufrnvv4l9x] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #44403c; /* stone-800 */
}

.targeting-item-last[b-ufrnvv4l9x] {
    border-bottom: none;
    padding-bottom: 0;
}

.targeting-item-icon[b-ufrnvv4l9x] {
    flex-shrink: 0;
    color: #78716c; /* stone-500 */
    font-size: 18px;
    margin-top: 0.125rem;
}

.targeting-item-label[b-ufrnvv4l9x] {
    font-size: 0.75rem;
    color: #a8a29e; /* stone-400 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.targeting-item-value[b-ufrnvv4l9x] {
    font-weight: 500;
    color: white;
}

.targeting-budget[b-ufrnvv4l9x] {
    font-size: 1.25rem;
}

.targeting-item-detail[b-ufrnvv4l9x] {
    font-size: 0.875rem;
    color: #5eead4; /* teal-400 */
    margin-top: 0.125rem;
}

/* Tips Card */
.tips-card[b-ufrnvv4l9x] {
    background-color: #fed7aa; /* orange-100 */
    border: 1px solid #fed7aa;
    border-radius: 24px;
    padding: 1.5rem;
}

.tips-title[b-ufrnvv4l9x] {
    font-weight: 700;
    color: #9a3412; /* orange-800 */
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tips-text[b-ufrnvv4l9x] {
    font-size: 0.875rem;
    color: #c2410c; /* orange-700 */
    line-height: 1.5;
    margin: 0;
}

/* Loading & Error States */
.loading-container[b-ufrnvv4l9x],
.error-container[b-ufrnvv4l9x] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    color: var(--rz-base-500);
}
/* /Components/Pages/Jobs/JobQuestionCard.razor.rz.scp.css */
.custom-question-item[b-rbzjh33xvm] {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background-color: white;
    border: 1px solid var(--rz-base-200);
    border-radius: 16px;
    transition: all 0.2s;
    opacity: 0.7;
    cursor: pointer;
}

.custom-question-item.enabled[b-rbzjh33xvm] {
    opacity: 1;
    border-color: var(--rz-primary);
    background-color: #f0fdfa; /* teal-50 */
    box-shadow: 0 4px 6px -1px rgba(15, 118, 110, 0.05);
}

.item-main[b-rbzjh33xvm] {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.question-icon[b-rbzjh33xvm] {
    font-size: 24px;
    color: var(--rz-base-400);
}

.enabled .question-icon[b-rbzjh33xvm] {
    color: var(--rz-primary);
}

.question-text[b-rbzjh33xvm] {
    flex: 1;
    color: var(--rz-base-900);
    font-weight: 500;
}

.custom-question-item:not(.enabled) .question-text[b-rbzjh33xvm] {
    color: var(--rz-base-500);
}

.question-checkbox[b-rbzjh33xvm] {
    margin-left: auto;
}

.card-body[b-rbzjh33xvm] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 118, 110, 0.1);
    width: 100%;
    animation: fadeIn-b-rbzjh33xvm 0.3s ease;
}

@keyframes fadeIn-b-rbzjh33xvm {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

[b-rbzjh33xvm] .wizard-input {
    border-radius: 12px !important;
}

[b-rbzjh33xvm] .wizard-dropdown-inner {
    width: 100%;
}

[b-rbzjh33xvm] .wizard-dropdown-inner .rz-dropdown {
    width: 100%;
    border-radius: 12px !important;
}
/* /Components/Pages/Jobs/MyJobs.razor.rz.scp.css */
.jobs-container[b-ubv62zhe7s] {
    padding: 1rem;
}

@media (min-width: 768px) {
    .jobs-container[b-ubv62zhe7s] {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .jobs-container[b-ubv62zhe7s] {
        padding: 2rem;
    }
}

/* Header */
.jobs-header[b-ubv62zhe7s] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.jobs-title[b-ubv62zhe7s] {
    font-size: 1.875rem;
    font-weight: 400;
    color: var(--rz-base-800);
    margin: 0;
}

/* Jobs Grid */
.jobs-grid[b-ubv62zhe7s] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .jobs-grid[b-ubv62zhe7s] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .jobs-grid[b-ubv62zhe7s] {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Job Card */
[b-ubv62zhe7s] .job-card {
    background-color: white;
    padding: 1.5rem !important;
    border-radius: 24px !important;
    border: 1px solid var(--rz-base-100);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

[b-ubv62zhe7s] .job-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* Card Header */
.job-card-header[b-ubv62zhe7s] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-icon[b-ubv62zhe7s] {
    padding: 0.75rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-icon-orange[b-ubv62zhe7s] {
    background-color: #fed7aa;
    color: #ea580c;
}

.job-icon-red[b-ubv62zhe7s] {
    background-color: #fecaca;
    color: #dc2626;
}

.job-icon-blue[b-ubv62zhe7s] {
    background-color: #bfdbfe;
    color: #2563eb;
}

.status-badge[b-ubv62zhe7s] {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: bold;
}

.status-active[b-ubv62zhe7s] {
    background-color: #d1fae5;
    color: #065f46;
}

.status-paused[b-ubv62zhe7s] {
    background-color: var(--rz-base-100);
    color: var(--rz-base-500);
}

/* Job Content */
.job-title[b-ubv62zhe7s] {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--rz-base-900);
    margin: 0 0 0.25rem 0;
}

.job-location[b-ubv62zhe7s] {
    font-size: 0.875rem;
    color: var(--rz-base-500);
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Job Stats */
.job-stats[b-ubv62zhe7s] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--rz-base-600);
    background-color: var(--rz-base-50);
    padding: 0.75rem;
    border-radius: 12px;
    margin-top: auto;
    margin-bottom: 0.75rem;
}

.job-stats span:first-child[b-ubv62zhe7s] {
    font-weight: bold;
}

.job-status-text[b-ubv62zhe7s] {
    font-weight: 500;
    color: var(--rz-base-500);
}

/* Job Actions */
.job-actions[b-ubv62zhe7s] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

[b-ubv62zhe7s] .job-action-btn {
    padding: 0.625rem 1rem !important;
    font-weight: 500 !important;
    border-radius: 12px !important;
    transition: all 0.2s !important;
}

[b-ubv62zhe7s] .job-action-leads {
    background-color: #f0fdfa !important;
    color: #115e59 !important;
}

[b-ubv62zhe7s] .job-action-leads:hover {
    background-color: #ccfbf1 !important;
}

[b-ubv62zhe7s] .job-action-manage {
    border: 1px solid var(--rz-base-200) !important;
    color: var(--rz-base-600) !important;
    background-color: white !important;
}

[b-ubv62zhe7s] .job-action-manage:hover {
    background-color: var(--rz-base-50) !important;
}

/* Empty State */
[b-ubv62zhe7s] .empty-state-card {
    border-radius: 24px !important;
    padding: 0.5rem !important;
}

.no-jobs[b-ubv62zhe7s] {
    padding: 2rem;
    text-align: center;
    color: var(--rz-base-500);
}

.no-jobs p[b-ubv62zhe7s] {
    margin: 0;
}
/* /Components/Shared/LogoutConfirmationModal.razor.rz.scp.css */
.profile-modal-overlay[b-m0fuk0xumh] {
    position: fixed;
    inset: 0;
    z-index: 50;
    background-color: rgba(28, 25, 23, 0.4); /* stone-900 with 40% opacity */
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn-b-m0fuk0xumh 0.2s ease-in-out;
}

@keyframes fadeIn-b-m0fuk0xumh {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleUp-b-m0fuk0xumh {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.profile-modal-content[b-m0fuk0xumh] {
    background-color: white;
    width: 100%;
    max-width: 28rem;
    border-radius: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    animation: scaleUp-b-m0fuk0xumh 0.3s ease-out;
}

.profile-modal-inner[b-m0fuk0xumh] {
    padding: 2rem;
    text-align: center;
}

.profile-modal-icon[b-m0fuk0xumh] {
    width: 5rem;
    height: 5rem;
    background-color: #fee2e2; /* red-100 */
    color: #dc2626; /* red-600 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.profile-modal-title[b-m0fuk0xumh] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c1917; /* stone-900 */
    margin: 0 0 0.5rem 0;
}

.profile-modal-description[b-m0fuk0xumh] {
    color: #78716c; /* stone-500 */
    margin: 0 0 2rem 0;
    line-height: 1.5;
}

.profile-modal-actions[b-m0fuk0xumh] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

[b-m0fuk0xumh] .profile-modal-primary-btn {
    width: 100% !important;
    padding: 0.875rem 1rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    background-color: #dc2626 !important; /* red-600 */
}

[b-m0fuk0xumh] .profile-modal-primary-btn:active {
    transform: scale(0.95);
}

[b-m0fuk0xumh] .profile-modal-cancel-btn {
    width: 100% !important;
    padding: 0.875rem 1rem !important;
    font-weight: 500 !important;
    color: #78716c !important; /* stone-500 */
}

[b-m0fuk0xumh] .profile-modal-cancel-btn:hover {
    color: #292524 !important; /* stone-800 */
}
/* /Components/Shared/ProfileRequiredModal.razor.rz.scp.css */
.profile-modal-overlay[b-xbkau9tdo3] {
    position: fixed;
    inset: 0;
    z-index: 50;
    background-color: rgba(28, 25, 23, 0.4); /* stone-900 with 40% opacity */
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn-b-xbkau9tdo3 0.2s ease-in-out;
}

@keyframes fadeIn-b-xbkau9tdo3 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleUp-b-xbkau9tdo3 {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.profile-modal-content[b-xbkau9tdo3] {
    background-color: white;
    width: 100%;
    max-width: 28rem;
    border-radius: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    animation: scaleUp-b-xbkau9tdo3 0.3s ease-out;
}

.profile-modal-inner[b-xbkau9tdo3] {
    padding: 2rem;
    text-align: center;
}

.profile-modal-icon[b-xbkau9tdo3] {
    width: 5rem;
    height: 5rem;
    background-color: #fed7aa; /* orange-100 */
    color: #ea580c; /* orange-600 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.profile-modal-title[b-xbkau9tdo3] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c1917; /* stone-900 */
    margin: 0 0 0.5rem 0;
}

.profile-modal-description[b-xbkau9tdo3] {
    color: #78716c; /* stone-500 */
    margin: 0 0 2rem 0;
    line-height: 1.5;
}

.profile-modal-actions[b-xbkau9tdo3] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

[b-xbkau9tdo3] .profile-modal-primary-btn {
    width: 100% !important;
    padding: 0.875rem 1rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

[b-xbkau9tdo3] .profile-modal-primary-btn:active {
    transform: scale(0.95);
}

[b-xbkau9tdo3] .profile-modal-cancel-btn {
    width: 100% !important;
    padding: 0.875rem 1rem !important;
    font-weight: 500 !important;
    color: #78716c !important; /* stone-500 */
}

[b-xbkau9tdo3] .profile-modal-cancel-btn:hover {
    color: #292524 !important; /* stone-800 */
}
/* /Components/Shared/RenewJobModal.razor.rz.scp.css */
/* Renew Modal Overlay */
.renew-modal-overlay[b-icmls1w2zd] {
    position: fixed;
    inset: 0;
    z-index: 50;
    background-color: rgba(41, 37, 36, 0.4); /* stone-900 with opacity */
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fade-in-b-icmls1w2zd 0.3s ease-in-out;
}

@keyframes fade-in-b-icmls1w2zd {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Renew Modal Content */
.renew-modal-content[b-icmls1w2zd] {
    background-color: white;
    width: 100%;
    max-width: 32rem;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    animation: slide-in-b-icmls1w2zd 0.3s ease-out;
    max-height: 80vh;
}

@media (min-width: 768px) {
    .renew-modal-content[b-icmls1w2zd] {
        max-height: none;
    }
}

@keyframes slide-in-b-icmls1w2zd {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Modal Header */
.renew-modal-header[b-icmls1w2zd] {
    padding: 1.5rem;
    border-bottom: 1px solid var(--rz-base-100);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--rz-base-50);
}

[b-icmls1w2zd] .header-back-btn {
    padding: 0.5rem !important;
    border-radius: 50% !important;
    color: var(--rz-base-500) !important;
}

[b-icmls1w2zd] .header-back-btn:hover {
    background-color: var(--rz-base-200) !important;
}

.renew-modal-title[b-icmls1w2zd] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rz-base-900);
    margin: 0;
}

/* Modal Body */
.renew-modal-body[b-icmls1w2zd] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Renew Field */
.renew-field[b-icmls1w2zd] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.renew-field-label[b-icmls1w2zd] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--rz-base-700);
}

/* Duration Selection */
.duration-presets[b-icmls1w2zd] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

[b-icmls1w2zd] .duration-preset-btn {
    border-radius: 12px !important;
    padding: 0.5rem 1rem !important;
    font-weight: 500 !important;
    font-size: 0.875rem !important;
    transition: all 0.2s !important;
}

.duration-custom[b-icmls1w2zd] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--rz-base-50);
    padding: 0.75rem;
    border-radius: 12px;
    border: 1px solid var(--rz-base-200);
}

[b-icmls1w2zd] .duration-control-btn {
    padding: 0.5rem !important;
    border-radius: 8px !important;
    background-color: white !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    color: var(--rz-base-600) !important;
}

[b-icmls1w2zd] .duration-control-btn:hover {
    color: var(--rz-primary) !important;
}

.duration-display[b-icmls1w2zd] {
    flex: 1;
    text-align: center;
    font-weight: 700;
    color: var(--rz-base-800);
}

/* Budget Slider */
.budget-slider-card[b-icmls1w2zd] {
    background-color: white;
    border: 1px solid var(--rz-base-200);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.budget-slider-header[b-icmls1w2zd] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.budget-slider-label[b-icmls1w2zd] {
    color: var(--rz-base-500);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.budget-slider-amount[b-icmls1w2zd] {
    font-size: 1.875rem;
    font-weight: 700;
    color: #115e59; /* teal-800 */
}

[b-icmls1w2zd] .budget-slider {
    margin-bottom: 0.5rem;
}

.budget-slider-range[b-icmls1w2zd] {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--rz-base-400);
    font-weight: 500;
}

/* Payment Method */
.payment-method-title[b-icmls1w2zd] {
    font-weight: 700;
    color: var(--rz-base-900);
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.payment-methods[b-icmls1w2zd] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-method-option[b-icmls1w2zd] {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 16px;
    border: 2px solid var(--rz-base-200);
    background-color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-method-option:hover[b-icmls1w2zd] {
    border-color: var(--rz-primary);
    background-color: #f0fdfa; /* teal-50 */
}

.payment-method-option.selected[b-icmls1w2zd] {
    border-color: var(--rz-primary);
    background-color: #f0fdfa; /* teal-50 */
}

.payment-radio[b-icmls1w2zd] {
    display: none;
}

.payment-method-icon[b-icmls1w2zd] {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--rz-base-100);
    color: var(--rz-base-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.payment-method-icon.selected[b-icmls1w2zd] {
    background-color: #99f6e4; /* teal-200 */
    color: #115e59; /* teal-800 */
}

.payment-method-info[b-icmls1w2zd] {
    flex: 1;
}

.payment-method-name[b-icmls1w2zd] {
    font-weight: 700;
    color: var(--rz-base-900);
}

/* Modal Footer */
.renew-modal-footer[b-icmls1w2zd] {
    padding: 1.5rem;
    background-color: white;
    border-top: 1px solid var(--rz-base-200);
}

.total-cost-row[b-icmls1w2zd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.total-cost-row span:first-child[b-icmls1w2zd] {
    color: var(--rz-base-500);
}

.total-cost-amount[b-icmls1w2zd] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #115e59; /* teal-800 */
}

[b-icmls1w2zd] .extend-btn {
    width: 100%;
    padding: 0.875rem 1rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}

[b-icmls1w2zd] .extend-btn:active {
    transform: scale(0.95);
}

/* Success Screen */
.renew-modal-success[b-icmls1w2zd] {
    background-color: white;
    width: 100%;
    max-width: 28rem;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2rem;
    text-align: center;
    animation: scale-up-b-icmls1w2zd 0.3s ease-out;
}

@keyframes scale-up-b-icmls1w2zd {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon-wrapper[b-icmls1w2zd] {
    width: 96px;
    height: 96px;
    background-color: #dcfce7; /* green-100 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-title[b-icmls1w2zd] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rz-base-900);
    margin: 0 0 0.5rem 0;
}

.success-message[b-icmls1w2zd] {
    color: var(--rz-base-500);
    margin: 0 0 2rem 0;
}

[b-icmls1w2zd] .success-btn {
    width: 100%;
    padding: 0.875rem 1rem !important;
    font-weight: 700 !important;
    font-size: 1.125rem !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}

[b-icmls1w2zd] .success-btn:active {
    transform: scale(0.95);
}
/* /Components/Shared/StatusBadge.razor.rz.scp.css */
.status-badge[b-t5ufqd49wl] {
    display: inline-block;
    border-radius: 9999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* Size variants */
.status-badge.size-xs[b-t5ufqd49wl] {
    padding: 2px 8px;
    font-size: 10px;
}

.status-badge.size-sm[b-t5ufqd49wl] {
    padding: 2px 10px;
    font-size: 12px;
}

/* Status colors */
.status-badge.status-active[b-t5ufqd49wl],
.status-badge.status-approved[b-t5ufqd49wl] {
    background-color: #d1fae5; /* green-100 */
    color: #15803d; /* green-700 */
}

.status-badge.status-pending[b-t5ufqd49wl] {
    background-color: #fed7aa; /* orange-100 */
    color: #c2410c; /* orange-700 */
}

.status-badge.status-rejected[b-t5ufqd49wl],
.status-badge.status-blocked[b-t5ufqd49wl] {
    background-color: #fecaca; /* red-100 */
    color: #b91c1c; /* red-700 */
}

.status-badge.status-new[b-t5ufqd49wl] {
    background-color: #ccfbf1; /* teal-100 */
    color: #115e59; /* teal-800 */
}

.status-badge.status-contacted[b-t5ufqd49wl] {
    background-color: #dbeafe; /* blue-100 */
    color: #1d4ed8; /* blue-700 */
}

.status-badge.status-trial[b-t5ufqd49wl] {
    background-color: #e9d5ff; /* purple-100 */
    color: #7e22ce; /* purple-700 */
}

.status-badge.status-hired[b-t5ufqd49wl] {
    background-color: #86efac; /* green-300 - brighter for hired */
    color: #15803d; /* green-800 */
}

.status-badge.status-draft[b-t5ufqd49wl] {
    background-color: #f1f5f9; /* slate-100 */
    color: #475569; /* slate-600 */
}

.status-badge.status-published[b-t5ufqd49wl] {
    background-color: #d1fae5; /* green-100 */
    color: #15803d; /* green-700 */
}

.status-badge.status-closed[b-t5ufqd49wl] {
    background-color: #f1f5f9; /* slate-100 */
    color: #64748b; /* slate-500 */
}
