/* ==========================================================================
   Sheikh El-Hara - Company Dashboard Styles
   RTL Arabic Dashboard
   ========================================================================== */

/* ---------- CSS Custom Properties (shared) ---------- */
:root {
    --sh-primary: #2563eb;
    --sh-primary-light: #3b82f6;
    --sh-primary-dark: #1d4ed8;
    --sh-primary-bg: #eff6ff;
    --sh-dark: #1e293b;
    --sh-dark-light: #334155;
    --sh-success: #10b981;
    --sh-success-bg: #ecfdf5;
    --sh-warning: #f59e0b;
    --sh-warning-bg: #fffbeb;
    --sh-error: #ef4444;
    --sh-error-bg: #fef2f2;
    --sh-gray-50: #f8fafc;
    --sh-gray-100: #f1f5f9;
    --sh-gray-200: #e2e8f0;
    --sh-gray-300: #cbd5e1;
    --sh-gray-400: #94a3b8;
    --sh-gray-500: #64748b;
    --sh-gray-600: #475569;
    --sh-gray-700: #334155;
    --sh-text: #1e293b;
    --sh-text-muted: #64748b;
    --sh-border: #e2e8f0;
    --sh-radius: 8px;
    --sh-radius-lg: 12px;
    --sh-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --sh-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --sh-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --sh-transition: 0.2s ease;
    --sh-font-family: 'Tajawal', 'Cairo', 'Segoe UI', Tahoma, sans-serif;
}

/* ---------- Dashboard Layout ---------- */
.sh-dashboard {
    direction: rtl;
    text-align: right;
    font-family: var(--sh-font-family);
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: var(--sh-text);
    line-height: 1.7;
}

.sh-dashboard *,
.sh-dashboard *::before,
.sh-dashboard *::after {
    box-sizing: border-box;
}

.sh-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.sh-dashboard-header__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sh-dark);
    margin: 0;
}

.sh-dashboard-header__company {
    font-size: 0.9rem;
    color: var(--sh-text-muted);
}

/* ---------- Tabs Navigation ---------- */
.sh-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--sh-gray-200);
    margin-bottom: 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.sh-tabs-nav::-webkit-scrollbar {
    display: none;
}

.sh-tab-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--sh-font-family);
    color: var(--sh-text-muted);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all var(--sh-transition);
    white-space: nowrap;
    margin-bottom: -2px;
}

.sh-tab-btn:hover {
    color: var(--sh-primary);
}

.sh-tab-btn.active {
    color: var(--sh-primary);
    border-bottom-color: var(--sh-primary);
}

.sh-tab-btn .sh-tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: var(--sh-primary);
    border-radius: 10px;
    margin-right: 0.4rem;
}

/* ---------- Tab Content ---------- */
.sh-tab-content {
    display: none;
    animation: shDashFadeIn 0.3s ease;
}

.sh-tab-content.active {
    display: block;
}

@keyframes shDashFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.sh-stat-card {
    background: #fff;
    border-radius: var(--sh-radius);
    padding: 1.25rem;
    box-shadow: var(--sh-shadow);
    border-top: 3px solid var(--sh-gray-200);
    transition: all var(--sh-transition);
}

.sh-stat-card:hover {
    box-shadow: var(--sh-shadow-md);
}

.sh-stat-card--primary {
    border-top-color: var(--sh-primary);
}

.sh-stat-card--success {
    border-top-color: var(--sh-success);
}

.sh-stat-card--warning {
    border-top-color: var(--sh-warning);
}

.sh-stat-card--error {
    border-top-color: var(--sh-error);
}

.sh-stat-card__icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.sh-stat-card__number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--sh-dark);
    line-height: 1.2;
}

.sh-stat-card__label {
    font-size: 0.85rem;
    color: var(--sh-text-muted);
    margin-top: 0.15rem;
}

/* ---------- Data Table ---------- */
.sh-table-wrap {
    background: #fff;
    border-radius: var(--sh-radius);
    box-shadow: var(--sh-shadow);
    overflow-x: auto;
}

.sh-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.sh-table thead {
    background: var(--sh-gray-50);
}

.sh-table th {
    text-align: right;
    padding: 0.85rem 1rem;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--sh-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: 2px solid var(--sh-gray-200);
    white-space: nowrap;
}

.sh-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--sh-gray-100);
    vertical-align: middle;
}

.sh-table tbody tr {
    transition: background var(--sh-transition);
}

.sh-table tbody tr:hover {
    background: var(--sh-gray-50);
}

.sh-table tbody tr:last-child td {
    border-bottom: none;
}

.sh-table-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--sh-text-muted);
}

.sh-table-empty__icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* ---------- Status Badges ---------- */
.sh-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    white-space: nowrap;
}

.sh-badge--pending {
    background: var(--sh-warning-bg);
    color: #92400e;
}

.sh-badge--active,
.sh-badge--approved {
    background: var(--sh-success-bg);
    color: #065f46;
}

.sh-badge--rejected {
    background: var(--sh-error-bg);
    color: #991b1b;
}

.sh-badge--expired {
    background: var(--sh-gray-100);
    color: var(--sh-gray-600);
}

.sh-badge--info {
    background: var(--sh-primary-bg);
    color: var(--sh-primary-dark);
}

/* ---------- Modal ---------- */
.sh-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.sh-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.sh-modal {
    background: #fff;
    border-radius: var(--sh-radius-lg);
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--sh-shadow-lg);
    transform: translateY(20px);
    transition: transform 0.25s ease;
    direction: rtl;
}

.sh-modal-overlay.open .sh-modal {
    transform: translateY(0);
}

.sh-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--sh-gray-200);
}

.sh-modal__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sh-dark);
    margin: 0;
}

.sh-modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--sh-gray-400);
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color var(--sh-transition);
}

.sh-modal__close:hover {
    color: var(--sh-error);
}

.sh-modal__body {
    padding: 1.5rem;
}

.sh-modal__footer {
    display: flex;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--sh-gray-200);
    background: var(--sh-gray-50);
    border-radius: 0 0 var(--sh-radius-lg) var(--sh-radius-lg);
}

/* ---------- Candidate Card (Results Grid) ---------- */
.sh-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.sh-candidate-card {
    background: #fff;
    border: 1px solid var(--sh-gray-200);
    border-radius: var(--sh-radius);
    padding: 1.25rem;
    transition: all var(--sh-transition);
    position: relative;
    cursor: pointer;
}

.sh-candidate-card:hover {
    box-shadow: var(--sh-shadow-md);
    border-color: var(--sh-primary-light);
}

.sh-candidate-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.sh-candidate-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sh-primary-bg);
    color: var(--sh-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.sh-candidate-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sh-dark);
    margin: 0 0 0.1rem;
}

.sh-candidate-card__role {
    font-size: 0.8rem;
    color: var(--sh-text-muted);
}

.sh-candidate-card__score {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--sh-success-bg);
    color: var(--sh-success);
    padding: 0.35rem 0.6rem;
    border-radius: var(--sh-radius);
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.2;
}

.sh-candidate-card__score small {
    font-size: 0.65rem;
    font-weight: 600;
    color: #065f46;
}

.sh-candidate-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--sh-gray-600);
}

.sh-candidate-card__info-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.sh-candidate-card__info-row .dashicons,
.sh-candidate-card__info-row i {
    font-size: 0.9rem;
    width: 16px;
    color: var(--sh-gray-400);
}

/* ---------- Tags ---------- */
.sh-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.sh-tag {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--sh-gray-100);
    color: var(--sh-gray-600);
    border-radius: 50px;
}

.sh-tag--primary {
    background: var(--sh-primary-bg);
    color: var(--sh-primary);
}

.sh-tag--success {
    background: var(--sh-success-bg);
    color: #065f46;
}

/* ---------- Filters Section ---------- */
.sh-filters-section {
    background: #fff;
    border-radius: var(--sh-radius);
    box-shadow: var(--sh-shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sh-filters-section__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sh-dark);
    margin: 0 0 1rem;
}

.sh-filters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.sh-filter-group {
    margin-bottom: 0;
}

.sh-filter-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sh-dark);
    margin-bottom: 0.35rem;
}

/* ---------- Boolean Toggle ---------- */
.sh-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.sh-toggle__track {
    width: 44px;
    height: 24px;
    background: var(--sh-gray-300);
    border-radius: 12px;
    position: relative;
    transition: background var(--sh-transition);
}

.sh-toggle__thumb {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: all var(--sh-transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.sh-toggle input {
    display: none;
}

.sh-toggle input:checked ~ .sh-toggle__track {
    background: var(--sh-primary);
}

.sh-toggle input:checked ~ .sh-toggle__track .sh-toggle__thumb {
    right: 22px;
}

.sh-toggle__label {
    font-size: 0.9rem;
    color: var(--sh-dark);
}

/* ---------- Subscription Card ---------- */
.sh-subscription-card {
    background: #fff;
    border-radius: var(--sh-radius);
    box-shadow: var(--sh-shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--sh-gray-200);
}

.sh-subscription-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.sh-subscription-card__plan {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sh-dark);
}

.sh-subscription-card__status {
    display: inline-block;
}

.sh-subscription-card__details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.sh-subscription-detail {
    text-align: center;
    padding: 0.75rem;
    background: var(--sh-gray-50);
    border-radius: var(--sh-radius);
}

.sh-subscription-detail__value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sh-dark);
}

.sh-subscription-detail__label {
    font-size: 0.8rem;
    color: var(--sh-text-muted);
}

/* ---------- Promo Input ---------- */
.sh-promo-input {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
}

.sh-promo-input .sh-input {
    flex: 1;
}

.sh-promo-input .sh-btn {
    flex-shrink: 0;
}

.sh-promo-message {
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.sh-promo-message--success {
    color: var(--sh-success);
}

.sh-promo-message--error {
    color: var(--sh-error);
}

/* ---------- Profile View (in modal) ---------- */
.sh-profile-view {
    direction: rtl;
}

.sh-profile-view__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--sh-gray-200);
}

.sh-profile-view__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--sh-primary-bg);
    color: var(--sh-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.sh-profile-view__name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--sh-dark);
    margin: 0 0 0.15rem;
}

.sh-profile-view__meta {
    font-size: 0.85rem;
    color: var(--sh-text-muted);
}

.sh-profile-section {
    margin-bottom: 1.5rem;
}

.sh-profile-section__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sh-dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--sh-primary-bg);
}

.sh-profile-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.sh-profile-info-item {
    font-size: 0.9rem;
}

.sh-profile-info-item__label {
    font-weight: 600;
    color: var(--sh-text-muted);
    font-size: 0.8rem;
    display: block;
}

.sh-profile-info-item__value {
    color: var(--sh-dark);
}

.sh-profile-score-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.sh-profile-score-bar__label {
    font-size: 0.85rem;
    color: var(--sh-text-muted);
    min-width: 100px;
}

.sh-profile-score-bar__track {
    flex: 1;
    height: 8px;
    background: var(--sh-gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.sh-profile-score-bar__fill {
    height: 100%;
    background: var(--sh-primary);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.sh-profile-score-bar__value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--sh-dark);
    min-width: 40px;
    text-align: left;
}

/* ---------- Shared Form Elements ---------- */
.sh-dashboard .sh-input,
.sh-dashboard .sh-select,
.sh-dashboard .sh-textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    font-family: var(--sh-font-family);
    color: var(--sh-text);
    background: #fff;
    border: 1.5px solid var(--sh-gray-300);
    border-radius: var(--sh-radius);
    transition: border-color var(--sh-transition), box-shadow var(--sh-transition);
    direction: rtl;
    text-align: right;
}

.sh-dashboard .sh-input:focus,
.sh-dashboard .sh-select:focus,
.sh-dashboard .sh-textarea:focus {
    outline: none;
    border-color: var(--sh-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.sh-dashboard .sh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--sh-font-family);
    border: 2px solid transparent;
    border-radius: var(--sh-radius);
    cursor: pointer;
    transition: all var(--sh-transition);
    text-decoration: none;
    line-height: 1.4;
}

.sh-dashboard .sh-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.sh-dashboard .sh-btn--primary {
    background: var(--sh-primary);
    color: #fff;
    border-color: var(--sh-primary);
}

.sh-dashboard .sh-btn--primary:hover:not(:disabled) {
    background: var(--sh-primary-dark);
    border-color: var(--sh-primary-dark);
}

.sh-dashboard .sh-btn--secondary {
    background: #fff;
    color: var(--sh-dark);
    border-color: var(--sh-gray-300);
}

.sh-dashboard .sh-btn--secondary:hover:not(:disabled) {
    background: var(--sh-gray-50);
    border-color: var(--sh-gray-400);
}

.sh-dashboard .sh-btn--sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
}

/* ---------- Pagination ---------- */
.sh-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 1.5rem;
    direction: rtl;
}

.sh-pagination__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--sh-gray-200);
    border-radius: var(--sh-radius);
    background: #fff;
    color: var(--sh-gray-600);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--sh-transition);
    font-family: var(--sh-font-family);
}

.sh-pagination__btn:hover {
    border-color: var(--sh-primary);
    color: var(--sh-primary);
}

.sh-pagination__btn.active {
    background: var(--sh-primary);
    border-color: var(--sh-primary);
    color: #fff;
}

.sh-pagination__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ---------- Loading States ---------- */
.sh-dashboard .sh-loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    border-radius: var(--sh-radius);
}

.sh-dashboard .sh-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--sh-gray-200);
    border-top-color: var(--sh-primary);
    border-radius: 50%;
    animation: shSpin 0.7s linear infinite;
}

@keyframes shSpin {
    to { transform: rotate(360deg); }
}

.sh-skeleton {
    background: linear-gradient(90deg, var(--sh-gray-100) 25%, var(--sh-gray-200) 50%, var(--sh-gray-100) 75%);
    background-size: 200% 100%;
    animation: shShimmer 1.5s infinite;
    border-radius: var(--sh-radius);
}

@keyframes shShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.sh-skeleton--text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.sh-skeleton--card {
    height: 120px;
}

/* ---------- Empty State ---------- */
.sh-empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--sh-text-muted);
}

.sh-empty-state__icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    opacity: 0.4;
}

.sh-empty-state__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sh-dark);
    margin-bottom: 0.35rem;
}

.sh-empty-state__text {
    font-size: 0.9rem;
    max-width: 350px;
    margin: 0 auto 1.25rem;
}

/* ---------- Card Container ---------- */
.sh-card {
    background: #fff;
    border-radius: var(--sh-radius);
    box-shadow: var(--sh-shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sh-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sh-dark);
    margin: 0 0 1rem;
}

/* ---------- Request Form in Dashboard ---------- */
.sh-request-form {
    position: relative;
}

.sh-request-form .sh-role-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.sh-request-form .sh-role-card {
    background: #fff;
    border: 2px solid var(--sh-gray-200);
    border-radius: var(--sh-radius);
    padding: 1rem 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--sh-transition);
    font-size: 0.85rem;
}

.sh-request-form .sh-role-card:hover {
    border-color: var(--sh-primary-light);
}

.sh-request-form .sh-role-card.selected {
    border-color: var(--sh-primary);
    background: var(--sh-primary-bg);
}

/* ---------- Slider (for scale filter) ---------- */
.sh-slider-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sh-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: var(--sh-gray-200);
    border-radius: 3px;
    outline: none;
    direction: rtl;
}

.sh-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--sh-primary);
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.sh-slider__value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--sh-dark);
    min-width: 28px;
    text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .sh-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sh-filters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sh-request-form .sh-role-selector {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sh-dashboard {
        margin: 1rem auto;
    }

    .sh-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .sh-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .sh-results-grid {
        grid-template-columns: 1fr;
    }

    .sh-filters-grid {
        grid-template-columns: 1fr;
    }

    .sh-subscription-card__details {
        grid-template-columns: 1fr;
    }

    .sh-profile-info-grid {
        grid-template-columns: 1fr;
    }

    .sh-request-form .sh-role-selector {
        grid-template-columns: repeat(2, 1fr);
    }

    .sh-modal {
        max-width: 100%;
        max-height: 85vh;
    }

    .sh-promo-input {
        flex-direction: column;
        max-width: 100%;
    }

    .sh-table th,
    .sh-table td {
        padding: 0.6rem 0.75rem;
        font-size: 0.82rem;
    }

    .sh-tab-btn {
        padding: 0.6rem 0.85rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .sh-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sh-stat-card {
        padding: 0.85rem;
    }

    .sh-stat-card__number {
        font-size: 1.3rem;
    }

    .sh-request-form .sh-role-selector {
        grid-template-columns: 1fr;
    }
}
