/* /Components/Blocks/AllArticlesBlock.razor.rz.scp.css */
/* ═══ Articles Page Layout ═══ */
[b-i6abxtetuj] .articles-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

[b-i6abxtetuj] .articles-sidebar {
    width: 100%;
    flex-shrink: 0;
}

[b-i6abxtetuj] .articles-main-content {
    flex-grow: 1;
    min-width: 0;
}

@media (min-width: 1024px) {
    [b-i6abxtetuj] .articles-layout {
        flex-direction: row;
        gap: 2rem;
    }
    [b-i6abxtetuj] .articles-sidebar {
        width: 280px;
        position: relative;
    }
}

@media (min-width: 1280px) {
    [b-i6abxtetuj] .articles-sidebar {
        width: 300px;
    }
}

/* Wrapper */
.ag-block-wrapper[b-i6abxtetuj] {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    padding: 5rem 0;
}

/* Container */
.ag-container[b-i6abxtetuj] {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.ag-header[b-i6abxtetuj] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 1.5rem;
}

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

.ag-eyebrow[b-i6abxtetuj] {
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

.ag-title[b-i6abxtetuj] {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ag-divider[b-i6abxtetuj] {
    width: 5rem;
    height: 4px;
    border-radius: 9999px;
}

.ag-view-all[b-i6abxtetuj] {
    display: none;
    font-weight: 700;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.ag-view-all:hover[b-i6abxtetuj] {
    opacity: 0.8;
}

@media (min-width: 768px) {
    .ag-view-all[b-i6abxtetuj] {
        display: flex;
    }
}

.ag-view-all-mobile[b-i6abxtetuj] {
    display: block;
    text-align: center;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .ag-view-all-mobile[b-i6abxtetuj] {
        display: none;
    }
}

.ag-btn-mobile[b-i6abxtetuj] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s;
}

.ag-btn-mobile:hover[b-i6abxtetuj] {
    opacity: 0.9;
}

/* Status Messages */
.ag-status[b-i6abxtetuj] {
    text-align: center;
    padding: 2.5rem;
    color: #6b7280;
    font-size: 1.125rem;
}

/* Filters */
.ag-search-input[b-i6abxtetuj], .ag-category-select[b-i6abxtetuj] {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    font-size: 0.95rem;
    background-color: #ffffff;
    color: #334155;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.ag-search-input:focus[b-i6abxtetuj], .ag-category-select:focus[b-i6abxtetuj] {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.ag-category-select[b-i6abxtetuj] {
    padding-right: 1.5rem;
    padding-left: 1rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    background-size: 1.2rem;
}

/* Grid */
.ag-grid[b-i6abxtetuj] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

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

/* Card */
.ag-card[b-i6abxtetuj] {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ag-card:hover[b-i6abxtetuj] {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.ag-img-wrap[b-i6abxtetuj] {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.ag-img[b-i6abxtetuj] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ag-card:hover .ag-img[b-i6abxtetuj] {
    transform: scale(1.05);
}

.ag-category[b-i6abxtetuj] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Content */
.ag-content[b-i6abxtetuj] {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ag-meta[b-i6abxtetuj] {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.ag-meta-item[b-i6abxtetuj] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ag-card-title[b-i6abxtetuj] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: opacity 0.3s;
}

.ag-card-title a[b-i6abxtetuj] {
    text-decoration: none;
    color: inherit;
}

.ag-card-title a:hover[b-i6abxtetuj] {
    opacity: 0.8;
}

.ag-summary[b-i6abxtetuj] {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Footer */
.ag-footer[b-i6abxtetuj] {
    border-top: 1px solid #f3f4f6;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.ag-author[b-i6abxtetuj] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ag-avatar[b-i6abxtetuj] {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
}

.ag-avatar-ph[b-i6abxtetuj] {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
}

.ag-author-name[b-i6abxtetuj] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.ag-read-more[b-i6abxtetuj] {
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s;
}

.ag-read-more:hover[b-i6abxtetuj] {
    opacity: 0.8;
}
/* /Components/Blocks/ArticlesGridBlock.razor.rz.scp.css */
/* Wrapper */
.ag-block-wrapper[b-i1mphyd5ce] {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    padding: 5rem 0;
}

/* Container */
.ag-container[b-i1mphyd5ce] {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.ag-header[b-i1mphyd5ce] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 1.5rem;
}

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

.ag-eyebrow[b-i1mphyd5ce] {
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

.ag-title[b-i1mphyd5ce] {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ag-divider[b-i1mphyd5ce] {
    width: 5rem;
    height: 4px;
    border-radius: 9999px;
}

.ag-view-all[b-i1mphyd5ce] {
    display: none;
    font-weight: 700;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.ag-view-all:hover[b-i1mphyd5ce] {
    opacity: 0.8;
}

@media (min-width: 768px) {
    .ag-view-all[b-i1mphyd5ce] {
        display: flex;
    }
}

.ag-view-all-mobile[b-i1mphyd5ce] {
    display: block;
    text-align: center;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .ag-view-all-mobile[b-i1mphyd5ce] {
        display: none;
    }
}

.ag-btn-mobile[b-i1mphyd5ce] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s;
}

.ag-btn-mobile:hover[b-i1mphyd5ce] {
    opacity: 0.9;
}

/* Status Messages */
.ag-status[b-i1mphyd5ce] {
    text-align: center;
    padding: 2.5rem;
    color: #6b7280;
    font-size: 1.125rem;
}

/* Grid */
.ag-grid[b-i1mphyd5ce] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

@media (min-width: 1024px) {
    .ag-grid-cols-2[b-i1mphyd5ce] {
        grid-template-columns: repeat(2, 1fr);
    }
    .ag-grid-cols-3[b-i1mphyd5ce] {
        grid-template-columns: repeat(3, 1fr);
    }
    .ag-grid-cols-4[b-i1mphyd5ce] {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Card */
.ag-card[b-i1mphyd5ce] {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ag-card:hover[b-i1mphyd5ce] {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.ag-img-wrap[b-i1mphyd5ce] {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.ag-img[b-i1mphyd5ce] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ag-card:hover .ag-img[b-i1mphyd5ce] {
    transform: scale(1.05);
}

.ag-card--story .ag-img-wrap[b-i1mphyd5ce] {
    height: 18rem;
    background: #e5e7eb;
}

.ag-story-overlay[b-i1mphyd5ce] {
    position: absolute;
    inset: auto 0 0 0;
    height: 70%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.82) 100%);
    pointer-events: none;
}

.ag-story-title[b-i1mphyd5ce] {
    position: absolute;
    right: 1.15rem;
    left: 1.15rem;
    bottom: 1rem;
    margin: 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.5;
    z-index: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.ag-category[b-i1mphyd5ce] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Content */
.ag-content[b-i1mphyd5ce] {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ag-card--story .ag-content[b-i1mphyd5ce] {
    padding-top: 1.25rem;
}

.ag-meta[b-i1mphyd5ce] {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.ag-meta-item[b-i1mphyd5ce] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ag-card-title[b-i1mphyd5ce] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: opacity 0.3s;
}

.ag-card-title a[b-i1mphyd5ce] {
    text-decoration: none;
    color: inherit;
}

.ag-card-title a:hover[b-i1mphyd5ce] {
    opacity: 0.8;
}

.ag-summary[b-i1mphyd5ce] {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Footer */
.ag-footer[b-i1mphyd5ce] {
    border-top: 1px solid #f3f4f6;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.ag-author[b-i1mphyd5ce] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ag-avatar[b-i1mphyd5ce] {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
}

.ag-avatar-ph[b-i1mphyd5ce] {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
}

.ag-author-name[b-i1mphyd5ce] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.ag-read-more[b-i1mphyd5ce] {
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s;
}

.ag-read-more:hover[b-i1mphyd5ce] {
    opacity: 0.8;
}

/* Professional refresh */
.ag-block-wrapper[b-i1mphyd5ce] {
    background: #ffffff;
    padding: 4.75rem 0;
}

.ag-header[b-i1mphyd5ce] {
    align-items: flex-start;
    margin-bottom: 2.4rem;
}

@media (min-width: 768px) {
    .ag-header[b-i1mphyd5ce] {
        align-items: flex-end;
    }
}

.ag-eyebrow[b-i1mphyd5ce] {
    letter-spacing: 0;
    text-transform: none;
    color: var(--ag-primary, #ea580c) !important;
}

.ag-title[b-i1mphyd5ce] {
    color: var(--ag-secondary, #111827) !important;
    font-weight: 800;
    letter-spacing: 0;
}

.ag-divider[b-i1mphyd5ce] {
    width: 4rem;
    height: 3px;
    background-color: var(--ag-primary, #ea580c) !important;
}

.ag-view-all[b-i1mphyd5ce] {
    color: var(--ag-primary, #ea580c) !important;
    padding: 0.7rem 1rem;
    border: 1px solid color-mix(in srgb, var(--ag-primary, #ea580c) 22%, transparent);
    border-radius: 9999px;
    background: #fffbf5;
}

.ag-grid[b-i1mphyd5ce] {
    gap: 1.35rem;
}

.ag-card[b-i1mphyd5ce] {
    border-radius: 1.25rem;
    border-color: rgba(234, 88, 12, 0.08);
    box-shadow: 0 1px 0 rgba(124, 45, 18, 0.03);
}

.ag-card:hover[b-i1mphyd5ce] {
    box-shadow: 0 18px 38px rgba(234, 88, 12, 0.09);
}

.ag-img-wrap[b-i1mphyd5ce] {
    height: 12.5rem;
    background: #fffbf5;
}

.ag-category[b-i1mphyd5ce] {
    color: var(--ag-primary, #c2410c) !important;
    background: rgba(255, 247, 237, 0.92);
    border: 1px solid rgba(234, 88, 12, 0.13);
    box-shadow: none;
}

.ag-content[b-i1mphyd5ce] {
    padding: 1.35rem;
}

.ag-card-title[b-i1mphyd5ce] {
    color: #111827;
    font-weight: 800;
}

.ag-summary[b-i1mphyd5ce],
.ag-meta[b-i1mphyd5ce],
.ag-author-name[b-i1mphyd5ce] {
    color: #64748b;
}

.ag-footer[b-i1mphyd5ce] {
    border-top-color: rgba(234, 88, 12, 0.08);
}

.ag-read-more[b-i1mphyd5ce] {
    color: var(--ag-primary, #ea580c) !important;
}

.ag-btn-mobile[b-i1mphyd5ce] {
    border-radius: 9999px;
    background: var(--ag-primary, #ea580c) !important;
    box-shadow: 0 12px 24px color-mix(in srgb, var(--ag-primary, #ea580c) 18%, transparent);
}
/* /Components/Blocks/ContactFormBlock.razor.rz.scp.css */
.contact-form-block[b-aula455hva] {
    --contact-primary: #0ea5e9;
    --contact-primary-dark: #0284c7;
    --contact-secondary: #0f172a;
    --contact-page-bg: #f3f4f6;
    --contact-panel-bg: #ffffff;
    --contact-field-bg: #f9fafb;
    --contact-radius: 1rem;
    --contact-max-width: 48rem;
    --contact-muted: #4b5563;
    --contact-border: #e5e7eb;
    color: #1f2937;
    background: var(--contact-page-bg);
    font-family: 'Tajawal', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.contact-form-block__section[b-aula455hva] {
    padding: 5rem 0;
    background: var(--contact-page-bg);
}

.contact-form-block__container[b-aula455hva] {
    width: min(100% - 2rem, var(--contact-max-width));
    margin: 0 auto;
}

.contact-form-block__panel[b-aula455hva] {
    min-width: 0;
    padding: clamp(2rem, 4vw, 2.5rem);
    border: 1px solid #f3f4f6;
    border-radius: var(--contact-radius);
    background: var(--contact-panel-bg);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.contact-form-block__panel h3[b-aula455hva] {
    margin: 0 0 1.5rem;
    color: var(--contact-secondary);
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
}

.contact-form-block[b-aula455hva]  .contact-form-block__form,
.contact-form-block__form[b-aula455hva] {
    display: grid;
    gap: 1.5rem;
}

.contact-form-block__field[b-aula455hva] {
    display: grid;
    gap: 0.5rem;
}

.contact-form-block__field label[b-aula455hva] {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 700;
}

.contact-form-block[b-aula455hva]  .contact-form-block__control,
.contact-form-block__control[b-aula455hva] {
    width: 100%;
    min-height: 3.25rem;
    box-sizing: border-box;
    display: block;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: var(--contact-field-bg);
    color: #111827;
    font: inherit;
    line-height: 1.6;
    outline: none;
    box-shadow: none;
    appearance: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form-block[b-aula455hva]  .contact-form-block__control::placeholder,
.contact-form-block__control[b-aula455hva]::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.contact-form-block[b-aula455hva]  .contact-form-block__control:focus,
.contact-form-block__control:focus[b-aula455hva] {
    border-color: var(--contact-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
}

.contact-form-block[b-aula455hva]  .contact-form-block__textarea,
.contact-form-block__textarea[b-aula455hva] {
    min-height: 10rem;
    resize: none;
}

.contact-form-block[b-aula455hva]  .contact-form-block__submit,
.contact-form-block__submit[b-aula455hva] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    min-height: 3.5rem;
    margin-top: 0.5rem;
    padding: 1rem 1.5rem;
    border: 0;
    border-radius: 0.5rem;
    background: var(--contact-primary);
    color: #ffffff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(14, 165, 233, 0.28);
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.contact-form-block[b-aula455hva]  .contact-form-block__submit:hover:not(:disabled),
.contact-form-block__submit:hover:not(:disabled)[b-aula455hva] {
    background: var(--contact-primary-dark);
    box-shadow: 0 14px 24px rgba(14, 165, 233, 0.34);
}

.contact-form-block[b-aula455hva]  .contact-form-block__submit:hover:not(:disabled) i,
.contact-form-block__submit:hover:not(:disabled) i[b-aula455hva] {
    transform: translate(-0.2rem, -0.2rem);
}

.contact-form-block[b-aula455hva]  .contact-form-block__submit:disabled,
.contact-form-block__submit:disabled[b-aula455hva] {
    cursor: progress;
    opacity: 0.72;
}

.contact-form-block[b-aula455hva]  .contact-form-block__submit i,
.contact-form-block__submit i[b-aula455hva] {
    transition: transform 0.18s ease;
}

.contact-form-block__validation[b-aula455hva] {
    margin: 0;
    padding: 0.95rem 1rem;
    border-radius: 0.75rem;
    background: #fff1f2;
    color: #9f1239;
    line-height: 1.8;
}

.contact-form-block__validation:empty[b-aula455hva] {
    display: none;
}

.contact-form-block__feedback[b-aula455hva] {
    margin-bottom: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 0.75rem;
    font-weight: 800;
    line-height: 1.8;
}

.contact-form-block__feedback.success[b-aula455hva] {
    background: #ecfdf5;
    color: #047857;
}

.contact-form-block__feedback.error[b-aula455hva] {
    background: #fff1f2;
    color: #be123c;
}

@media (max-width: 640px) {
    .contact-form-block__section[b-aula455hva] {
        padding: 3.5rem 0;
    }

    .contact-form-block__container[b-aula455hva] {
        width: min(100% - 1.25rem, 48rem);
    }

    .contact-form-block__panel[b-aula455hva] {
        padding: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-form-block__control[b-aula455hva],
    .contact-form-block__submit[b-aula455hva],
    .contact-form-block__submit i[b-aula455hva] {
        transition: none;
    }
}

/* Professional refresh */
.contact-form-block[b-aula455hva] {
    --contact-primary: #ea580c;
    --contact-primary-dark: #c2410c;
    --contact-secondary: #111827;
    --contact-page-bg: #fffbf5;
    --contact-field-bg: #ffffff;
    --contact-radius: 1.25rem;
    --contact-border: rgba(234, 88, 12, 0.1);
}

.contact-form-block__section[b-aula455hva] {
    padding: 4.75rem 0;
}

.contact-form-block__panel[b-aula455hva] {
    border-color: rgba(234, 88, 12, 0.08);
    box-shadow: 0 20px 45px rgba(234, 88, 12, 0.08);
}

.contact-form-block[b-aula455hva]  .contact-form-block__control,
.contact-form-block__control[b-aula455hva] {
    border-radius: 0.65rem;
    border-color: rgba(234, 88, 12, 0.12);
}

.contact-form-block[b-aula455hva]  .contact-form-block__control:focus,
.contact-form-block__control:focus[b-aula455hva] {
    border-color: var(--contact-primary);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.14);
}

.contact-form-block[b-aula455hva]  .contact-form-block__submit,
.contact-form-block__submit[b-aula455hva] {
    border-radius: 9999px;
    box-shadow: 0 14px 28px rgba(234, 88, 12, 0.18);
}
/* /Components/Blocks/FaqBlock.razor.rz.scp.css */
.faq-block[b-gxvhxbrb9r] {
    direction: rtl;
    font-family: 'Tajawal', sans-serif;
    background: #ffffff;
    padding: 4.75rem 0;
}

.faq-block__container[b-gxvhxbrb9r] {
    max-width: 58rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.faq-block__header[b-gxvhxbrb9r] {
    margin-bottom: 2.25rem;
    text-align: center;
}

.faq-block__eyebrow[b-gxvhxbrb9r] {
    display: block;
    margin-bottom: 0.5rem;
    color: #ea580c;
    font-size: 0.875rem;
    font-weight: 800;
}

.faq-block__title[b-gxvhxbrb9r] {
    margin: 0 0 1rem;
    color: #111827;
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
}

.faq-block__line[b-gxvhxbrb9r] {
    width: 4rem;
    height: 3px;
    margin: 0 auto;
    border-radius: 999px;
    background: #ea580c;
}

.faq-block__list[b-gxvhxbrb9r] {
    display: grid;
    gap: 0.85rem;
}

.faq-block__item[b-gxvhxbrb9r] {
    border: 1px solid rgba(234, 88, 12, 0.08);
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(124, 45, 18, 0.03);
    overflow: hidden;
}

.faq-block__item summary[b-gxvhxbrb9r] {
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    color: #111827;
    font-weight: 800;
    list-style: none;
}

.faq-block__item summary[b-gxvhxbrb9r]::-webkit-details-marker {
    display: none;
}

.faq-block__item p[b-gxvhxbrb9r] {
    margin: 0;
    padding: 0 1.2rem 1.25rem;
    color: #64748b;
    line-height: 1.9;
}

.faq-block__icon[b-gxvhxbrb9r] {
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 0.6rem;
    background: #fff7ed;
    color: #ea580c;
    font-weight: 900;
}

.faq-block__item[open][b-gxvhxbrb9r] {
    border-color: rgba(234, 88, 12, 0.22);
    box-shadow: 0 14px 30px rgba(234, 88, 12, 0.06);
}

.faq-block__item[open] .faq-block__icon[b-gxvhxbrb9r] {
    background: #ea580c;
    color: #ffffff;
}

.faq-block__item[open] .faq-block__icon[b-gxvhxbrb9r] {
    transform: rotate(45deg);
}

@media (max-width: 640px) {
    .faq-block[b-gxvhxbrb9r] {
        padding: 4rem 0;
    }

    .faq-block__item summary[b-gxvhxbrb9r] {
        align-items: flex-start;
    }
}
/* /Components/Blocks/MediaLibraryBlock.razor.rz.scp.css */
.media-lib[b-3lqvd6v066] {
    direction: rtl;
    font-family: 'Tajawal', sans-serif;
    background: #ffffff;
    padding: 4.75rem 0;
}

.media-lib__container[b-3lqvd6v066] {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.media-lib__header[b-3lqvd6v066] {
    margin-bottom: 2.4rem;
}

.media-lib__eyebrow[b-3lqvd6v066] {
    display: block;
    margin-bottom: 0.5rem;
    color: #ea580c;
    font-size: 0.875rem;
    font-weight: 800;
}

.media-lib__title[b-3lqvd6v066] {
    margin: 0 0 1rem;
    color: #111827;
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
}

.media-lib__line[b-3lqvd6v066] {
    width: 4rem;
    height: 3px;
    border-radius: 999px;
    background: #ea580c;
}

.media-lib__grid[b-3lqvd6v066] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.media-lib__card[b-3lqvd6v066] {
    overflow: hidden;
    border: 1px solid rgba(234, 88, 12, 0.08);
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(124, 45, 18, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.media-lib__card:hover[b-3lqvd6v066] {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(234, 88, 12, 0.09);
}

.media-lib__frame[b-3lqvd6v066] {
    aspect-ratio: 16 / 10;
    background: #fffbf5;
}

.media-lib__frame img[b-3lqvd6v066],
.media-lib__frame video[b-3lqvd6v066] {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.media-lib__audio[b-3lqvd6v066] {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem;
}

.media-lib__audio-icon[b-3lqvd6v066] {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ea580c;
    color: #ffffff;
}

.media-lib__audio audio[b-3lqvd6v066] {
    width: 100%;
}

.media-lib__body[b-3lqvd6v066] {
    padding: 1.1rem 1.2rem 1.25rem;
}

.media-lib__body h3[b-3lqvd6v066] {
    margin: 0 0 0.4rem;
    color: #111827;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
}

.media-lib__body span[b-3lqvd6v066] {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .media-lib__grid[b-3lqvd6v066] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .media-lib[b-3lqvd6v066] {
        padding: 4rem 0;
    }

    .media-lib__grid[b-3lqvd6v066] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Blocks/TestimonialsGridBlock.razor.rz.scp.css */
/* Wrapper */
.test-block-wrapper[b-43nd0ipjok] {
    font-family: 'Tajawal', sans-serif;
    background-color: transparent;
    direction: rtl;
    padding: 4rem 0;
}

/* Container */
.test-container[b-43nd0ipjok] {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 20;
}

/* Loading & Empty */
.test-loading[b-43nd0ipjok],
.test-empty[b-43nd0ipjok] {
    text-align: center;
    padding: 4rem;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    font-size: 1.125rem;
    color: #64748b;
}

/* Grid */
.test-grid[b-43nd0ipjok] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

/* Card */
.test-card[b-43nd0ipjok] {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.test-card:hover[b-43nd0ipjok] {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.test-quote-icon[b-43nd0ipjok] {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 5rem;
    color: #f8fafc;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    transition: color 0.3s;
}

.test-card:hover .test-quote-icon[b-43nd0ipjok] {
    color: #f0f9ff;
}

.test-stars[b-43nd0ipjok] {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.test-star[b-43nd0ipjok] {
    color: #facc15;
    font-size: 1rem;
}

.test-star-empty[b-43nd0ipjok] {
    color: #e2e8f0;
    font-size: 1rem;
}

.test-text[b-43nd0ipjok] {
    color: #334155;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

/* Author info */
.test-author[b-43nd0ipjok] {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
    position: relative;
    z-index: 10;
}

.test-avatar[b-43nd0ipjok] {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #bae6fd;
    flex-shrink: 0;
}

.test-avatar-placeholder[b-43nd0ipjok] {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0ea5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.test-name[b-43nd0ipjok] {
    font-weight: 700;
    color: #0f172a;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.test-role[b-43nd0ipjok] {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
}

/* Pagination */
.test-pagination[b-43nd0ipjok] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.test-btn-outline[b-43nd0ipjok] {
    background: transparent;
    border: 2px solid #cbd5e1;
    color: #475569;
    padding: 0.6rem 1.5rem;
    border-radius: 9999px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.test-btn-outline:not(:disabled):hover[b-43nd0ipjok] {
    border-color: #0ea5e9;
    color: #0ea5e9;
    background: #f0f9ff;
}

.test-btn-outline:disabled[b-43nd0ipjok] {
    opacity: 0.5;
    cursor: not-allowed;
}

.test-page-info[b-43nd0ipjok] {
    font-weight: 600;
    color: #64748b;
}

/* Professional refresh */
.test-block-wrapper[b-43nd0ipjok] {
    padding: 4.75rem 0;
    background: #fffbf5;
}

.test-card[b-43nd0ipjok],
.test-loading[b-43nd0ipjok],
.test-empty[b-43nd0ipjok] {
    border-radius: 1.25rem;
    border: 1px solid rgba(234, 88, 12, 0.08);
    box-shadow: 0 1px 0 rgba(124, 45, 18, 0.03);
}

.test-card:hover[b-43nd0ipjok] {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(234, 88, 12, 0.09);
}

.test-quote-icon[b-43nd0ipjok] {
    color: rgba(234, 88, 12, 0.06);
}

.test-card:hover .test-quote-icon[b-43nd0ipjok] {
    color: rgba(234, 88, 12, 0.1);
}

.test-text[b-43nd0ipjok],
.test-role[b-43nd0ipjok],
.test-page-info[b-43nd0ipjok] {
    color: #64748b;
}

.test-name[b-43nd0ipjok] {
    color: #111827;
}

.test-avatar[b-43nd0ipjok],
.test-avatar-placeholder[b-43nd0ipjok] {
    border-color: rgba(234, 88, 12, 0.18);
}

.test-avatar-placeholder[b-43nd0ipjok] {
    background: #fff7ed;
    color: #ea580c;
}

.test-btn-outline[b-43nd0ipjok] {
    border-radius: 9999px;
    border-color: rgba(234, 88, 12, 0.18);
    color: #ea580c;
}

.test-btn-outline:not(:disabled):hover[b-43nd0ipjok] {
    border-color: #ea580c;
    color: #c2410c;
    background: #fff7ed;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-l1kv0za7as] {
    --style1-sidebar: #102a32;
    --style1-sidebar-strong: #0a1c22;
    --style1-blue: #a86c1d;
    --style1-blue-soft: #faf3e8;
    --style1-text: #1f2937;
    --style1-muted: #64748b;
    --style1-line: #e5e7eb;
    --style1-panel: #ffffff;
    --style1-bg: #f8fafc;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--style1-bg);
    color: var(--style1-text);
    font-family: "Tajawal", "Cairo", "Segoe UI", sans-serif;
}

main[b-l1kv0za7as] {
    flex: 1;
    min-width: 0;
    background: rgba(248, 250, 252, 0.92);
}

.sidebar[b-l1kv0za7as] {
    background: #ffffff;
    box-shadow: inset -1px 0 0 #f1f5f9;
    border-right: 1px solid #e2e8f0;
}

.top-row[b-l1kv0za7as] {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--style1-line);
    backdrop-filter: blur(14px);
}

.top-row__inner[b-l1kv0za7as] {
    min-height: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0 1.5rem;
}

.top-row__links[b-l1kv0za7as],
.top-row__auth[b-l1kv0za7as] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.top-row__label[b-l1kv0za7as] {
    color: var(--style1-blue);
    font-size: 0.95rem;
    font-weight: 900;
}

.top-row__separator[b-l1kv0za7as] {
    color: #cbd5e1;
}

.top-row[b-l1kv0za7as]  a,
.top-row[b-l1kv0za7as]  .btn-link {
    text-decoration: none;
    color: var(--style1-muted);
    font-weight: 800;
    padding: 0.48rem 0.75rem;
    border-radius: 12px;
    transition: background-color 0.16s ease, color 0.16s ease;
}

.top-row[b-l1kv0za7as]  a:hover,
.top-row[b-l1kv0za7as]  .btn-link:hover {
    color: var(--style1-text);
    background: #f1f5f9;
}

.top-row[b-l1kv0za7as]  a.top-row__preview,
.top-row[b-l1kv0za7as]  a.top-row__preview:hover {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff !important;
    box-shadow: 0 3px 10px rgba(234,88,12,.3);
    padding: 0.42rem 0.9rem;
}
.top-row[b-l1kv0za7as]  a.top-row__preview:hover {
    opacity: .9;
    box-shadow: 0 4px 14px rgba(234,88,12,.4);
}

.top-row__notification[b-l1kv0za7as] {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 14px;
    background: #f8fafc;
}

.top-row__notification[b-l1kv0za7as]::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 1.25rem;
    height: 1.25rem;
    background: #94a3b8;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 24 24'%3E%3Cpath d='M12 22a2.5 2.5 0 0 0 2.45-2h-4.9A2.5 2.5 0 0 0 12 22Zm7-6V11a7 7 0 1 0-14 0v5l-2 2v1h18v-1l-2-2Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.top-row__notification span[b-l1kv0za7as] {
    position: absolute;
    top: 0.62rem;
    right: 0.67rem;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 2px #fff;
}

.top-row__user[b-l1kv0za7as] {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: var(--style1-text);
    font-weight: 800;
}

.top-row__logout[b-l1kv0za7as] {
    color: #ef4444 !important;
}

.content[b-l1kv0za7as] {
    width: min(100%, 1480px);
    margin: 0 auto;
    padding: 1.5rem 1.5rem 2.25rem;
}

.admin-style1[b-l1kv0za7as] (.admin-shell),
.admin-style1[b-l1kv0za7as] (.pages-shell),
.admin-style1[b-l1kv0za7as] (.menus-shell),
.admin-style1[b-l1kv0za7as] (.media-shell),
.admin-style1[b-l1kv0za7as] (.messages-shell),
.admin-style1[b-l1kv0za7as] (.settings-shell) {
    font-family: "Tajawal", "Cairo", "Segoe UI", sans-serif;
}

.admin-style1[b-l1kv0za7as] (.admin-hero),
.admin-style1[b-l1kv0za7as] (.pages-header),
.admin-style1[b-l1kv0za7as] (.menus-header),
.admin-style1[b-l1kv0za7as] (.media-header),
.admin-style1[b-l1kv0za7as] (.messages-header),
.admin-style1[b-l1kv0za7as] (.settings-header) {
    border-radius: 24px;
    border: 1px solid var(--style1-line);
    background: var(--style1-panel);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.admin-style1[b-l1kv0za7as] (.panel-card),
.admin-style1[b-l1kv0za7as] (.stat-card),
.admin-style1[b-l1kv0za7as] (.quick-card),
.admin-style1[b-l1kv0za7as] (.overview-card),
.admin-style1[b-l1kv0za7as] (.editor-card),
.admin-style1[b-l1kv0za7as] (.listing-card),
.admin-style1[b-l1kv0za7as] (.blocks-card),
.admin-style1[b-l1kv0za7as] (.block-editor-card),
.admin-style1[b-l1kv0za7as] (.block-list-card),
.admin-style1[b-l1kv0za7as] (.settings-card),
.admin-style1[b-l1kv0za7as] (.menus-card),
.admin-style1[b-l1kv0za7as] (.menu-group),
.admin-style1[b-l1kv0za7as] (.menu-item-card),
.admin-style1[b-l1kv0za7as] (.upload-card),
.admin-style1[b-l1kv0za7as] (.media-card),
.admin-style1[b-l1kv0za7as] (.messages-card),
.admin-style1[b-l1kv0za7as] (.message-card) {
    border-radius: 22px;
    border: 1px solid var(--style1-line);
    background: var(--style1-panel);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.admin-style1[b-l1kv0za7as] (.overview-card--accent),
.admin-style1[b-l1kv0za7as] (.stat-card--accent),
.admin-style1[b-l1kv0za7as] (.hero-note) {
    background: linear-gradient(135deg, #18353d, #274d58);
    border-color: rgba(24, 53, 61, 0.18);
}

.admin-style1[b-l1kv0za7as] (.section-badge),
.admin-style1[b-l1kv0za7as] (.panel-head__eyebrow),
.admin-style1[b-l1kv0za7as] (.quick-card__eyebrow),
.admin-style1[b-l1kv0za7as] (.stat-card__label),
.admin-style1[b-l1kv0za7as] (.overview-card__label),
.admin-style1[b-l1kv0za7as] (.eyebrow),
.admin-style1[b-l1kv0za7as] (.settings-kicker) {
    color: var(--style1-blue);
    background: var(--style1-blue-soft);
    letter-spacing: 0;
}

.admin-style1[b-l1kv0za7as] (.btn-dark),
.admin-style1[b-l1kv0za7as] (.btn-primary) {
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #18353d, #244d59);
    border-color: transparent;
    box-shadow: 0 10px 20px -10px rgba(24, 53, 61, 0.4);
}

.admin-style1[b-l1kv0za7as] (.btn-dark:hover),
.admin-style1[b-l1kv0za7as] (.btn-primary:hover) {
    background: linear-gradient(135deg, #112a31, #1e3f49);
    border-color: transparent;
}

.admin-style1[b-l1kv0za7as] (.btn-outline-dark),
.admin-style1[b-l1kv0za7as] (.btn-outline-secondary) {
    border-radius: 0.75rem;
    color: #334155;
    border-color: #cbd5e1;
    background: #fff;
}

.admin-style1[b-l1kv0za7as] (.form-control),
.admin-style1[b-l1kv0za7as] (.form-select) {
    border-radius: 14px;
    border-color: #dbe3ea;
    background: #fff;
}

.admin-style1[b-l1kv0za7as] (.form-control:focus),
.admin-style1[b-l1kv0za7as] (.form-select:focus) {
    border-color: rgba(168, 108, 29, 0.42);
    box-shadow: 0 0 0 0.2rem rgba(168, 108, 29, 0.12);
}

.admin-style1[b-l1kv0za7as] (.page-row),
.admin-style1[b-l1kv0za7as] (.block-row),
.admin-style1[b-l1kv0za7as] (.table-row),
.admin-style1[b-l1kv0za7as] (.asset-row),
.admin-style1[b-l1kv0za7as] (.filters-card),
.admin-style1[b-l1kv0za7as] (.message-card),
.admin-style1[b-l1kv0za7as] (.repeater-card),
.admin-style1[b-l1kv0za7as] (.preset-hint),
.admin-style1[b-l1kv0za7as] (.empty-panel),
.admin-style1[b-l1kv0za7as] (.template-advisor),
.admin-style1[b-l1kv0za7as] (.block-suggestions),
.admin-style1[b-l1kv0za7as] (.block-toolkit),
.admin-style1[b-l1kv0za7as] (.page-quality) {
    background: #f8fafc;
    border-color: #e2e8f0;
    box-shadow: none;
}

@media (max-width: 640.98px) {
    .top-row__inner[b-l1kv0za7as] {
        min-height: 4rem;
        padding: 0.75rem 1rem;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }

    .top-row__links[b-l1kv0za7as] {
        display: none;
    }

    .top-row__auth[b-l1kv0za7as] {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    .content[b-l1kv0za7as] {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .admin-style1[b-l1kv0za7as] ([class$="-header"]) {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 1.25rem !important;
        gap: 1.25rem !important;
    }

    .admin-style1[b-l1kv0za7as] (.header-actions) {
        width: 100%;
        justify-content: flex-start;
    }

    .admin-style1[b-l1kv0za7as] ([class*="-table-card"]) {
        overflow-x: auto !important;
        /* Force scroll instead of squishing */
    }

    .admin-style1[b-l1kv0za7as] ([class$="-cols"]) {
        min-width: 750px;
    }

    .admin-style1[b-l1kv0za7as] (.table-toolbar) {
        flex-direction: column !important;
    }

    .admin-style1[b-l1kv0za7as] (.table-toolbar .field) {
        width: 100%;
    }
}

@media (min-width: 641px) {
    .page[b-l1kv0za7as] {
        flex-direction: row;
    }

    .sidebar[b-l1kv0za7as] {
        width: 19rem;
        height: 100vh;
        position: sticky;
        top: 0;
        flex-shrink: 0;
    }
}

#blazor-error-ui[b-l1kv0za7as] {
    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-l1kv0za7as] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* ── Admin mobile improvements ── */
@media (max-width: 640px) {
  .content[b-l1kv0za7as] { padding: 0.75rem; }
  
  .admin-style1[b-l1kv0za7as] ([class$="-shell"]) {
    gap: 0.85rem !important;
  }
  .admin-style1[b-l1kv0za7as] ([class$="-header"]) {
    padding: 1rem !important;
    border-radius: 18px !important;
  }
  .admin-style1[b-l1kv0za7as] ([class*="-table-card"]),
  .admin-style1[b-l1kv0za7as] (.ar-mgr-table-card),
  .admin-style1[b-l1kv0za7as] (.messages-table-card) {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    border-radius: 18px !important;
  }
  .admin-style1[b-l1kv0za7as] (.table-toolbar) {
    flex-direction: column !important;
    gap: 0.5rem !important;
    padding: 0.75rem !important;
  }
  .admin-style1[b-l1kv0za7as] (.field--grow),
  .admin-style1[b-l1kv0za7as] (.table-toolbar .field) {
    width: 100% !important;
  }
  .admin-style1[b-l1kv0za7as] (.row-actions) {
    flex-wrap: wrap !important;
    gap: 0.3rem !important;
  }
  .admin-style1[b-l1kv0za7as] (.btn-sm) {
    padding: 0.3rem 0.6rem !important;
    font-size: 0.75rem !important;
  }
  .admin-style1[b-l1kv0za7as] (.type-radio-group) {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
  }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ── Toggler (mobile) ─────────────────────────────── */
.navbar-toggler[b-17rhzoken8] {
    appearance: none;
    cursor: pointer;
    width: 2.75rem;
    height: 2.75rem;
    color: white;
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    left: auto;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    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.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.35rem rgba(255,255,255,.08);
    transition: background-color .15s;
}
.navbar-toggler:checked[b-17rhzoken8] { background-color: rgba(255,255,255,.16); }

/* ── Top row / brand ──────────────────────────────── */
.top-row[b-17rhzoken8] {
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    padding: 0 1rem;
}

.container-fluid[b-17rhzoken8] { justify-content: center; }

.navbar-brand[b-17rhzoken8] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #0f172a;
    text-decoration: none;
}
.navbar-brand:hover[b-17rhzoken8] { color: #0f172a; }

.navbar-brand__mark[b-17rhzoken8] {
    width: 2.4rem;
    height: 2.4rem;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #18353d, #2d5a68);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(24,53,61,.3);
}

.navbar-brand__text[b-17rhzoken8] {
    display: grid;
    gap: 0.05rem;
    text-align: right;
}
.navbar-brand__text strong[b-17rhzoken8] { font-size: 1rem; font-weight: 900; color: #0f172a; line-height: 1.2; }

/* ── Scrollable area ──────────────────────────────── */
.nav-scrollable[b-17rhzoken8] { display: none; background: #fff; }
.navbar-toggler:checked ~ .nav-scrollable[b-17rhzoken8] { display: block; }

/* ── Section groups ───────────────────────────────── */
.nav-group[b-17rhzoken8] {
    margin: 0.45rem 0.6rem 0;
    border-radius: 16px;
    padding: 0 0 0.4rem;
    border: 1px solid transparent;
}

.nav-group--content[b-17rhzoken8] {
    background: linear-gradient(160deg, #f0fdf4, #f7fef9);
    border-color: #bbf7d0;
}
.nav-group--users[b-17rhzoken8] {
    background: linear-gradient(160deg, #f5f3ff, #faf9ff);
    border-color: #ddd6fe;
}
.nav-group--site[b-17rhzoken8] {
    background: linear-gradient(160deg, #fffbeb, #fffef5);
    border-color: #fde68a;
}

/* ── Section label ────────────────────────────────── */
.nav-section-label[b-17rhzoken8] {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 0.85rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.nav-section-label[b-17rhzoken8]::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* المحتوى — green */
.nav-section-label--content[b-17rhzoken8] { color: #166534; }
.nav-section-label--content[b-17rhzoken8]::before { background: #22c55e; }

/* المستخدمون — purple */
.nav-section-label--users[b-17rhzoken8] { color: #5b21b6; }
.nav-section-label--users[b-17rhzoken8]::before { background: #8b5cf6; }

/* الموقع — amber */
.nav-section-label--site[b-17rhzoken8] { color: #92400e; }
.nav-section-label--site[b-17rhzoken8]::before { background: #f59e0b; }

/* ── Icons ────────────────────────────────────────── */
.bi[b-17rhzoken8] {
    display: inline-block;
    position: relative;
    width: 1.05rem;
    height: 1.05rem;
    margin-left: 0.65rem;
    top: -1px;
    background-color: currentColor;
    mask-size: cover;
    flex-shrink: 0;
    opacity: .75;
}

.bi-house-door-fill-nav-menu[b-17rhzoken8] {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' 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-17rhzoken8] {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' 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-book-nav-menu[b-17rhzoken8] {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M1 2.828c.885-.37 2.154-.769 3.388-.893 1.33-.134 2.458.063 3.112.752v9.746c-.935-.53-2.12-.603-3.213-.493-1.18.12-2.37.461-3.287.811zm7.5-.141c.654-.689 1.782-.886 3.112-.752 1.234.124 2.503.523 3.388.893v9.923c-.918-.35-2.107-.692-3.287-.81-1.094-.111-2.278-.039-3.213.492zM8 1.783C7.015.936 5.587.81 4.287.94c-1.514.153-3.042.672-3.994 1.105A.5.5 0 0 0 0 2.5v11a.5.5 0 0 0 .707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5 0 0 0 .78 0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5 0 0 0 16 13.5v-11a.5.5 0 0 0-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809 8.985.936 8 1.783'/%3E%3C/svg%3E");
}
.bi-file-earmark-text-nav-menu[b-17rhzoken8] {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 7a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zM5 9.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5'/%3E%3Cpath d='M9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.5zm0 1v2A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}
.bi-chat-left-text-nav-menu[b-17rhzoken8] {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4.414A2 2 0 0 0 3 11.586l-2 2V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12.793a.5.5 0 0 0 .854.353l2.853-2.853A1 1 0 0 1 4.414 12H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z'/%3E%3Cpath d='M3 3.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5M3 6a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9A.5.5 0 0 1 3 6m0 2.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5'/%3E%3C/svg%3E");
}
.bi-chat-quote-nav-menu[b-17rhzoken8] {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M2.678 11.894a1 1 0 0 1 .287.801 11 11 0 0 1-.398 2c1.395-.323 2.247-.697 2.634-.893a1 1 0 0 1 .71-.074A8 8 0 0 0 8 14c3.996 0 7-2.807 7-6s-3.004-6-7-6-7 2.808-7 6c0 1.468.617 2.83 1.678 3.894m-.493 3.905a22 22 0 0 1-.713.129c-.2.032-.352-.176-.273-.362a10 10 0 0 0 .244-.637l.003-.01c.248-.72.45-1.548.524-2.319C.743 11.37 0 9.76 0 8c0-3.866 3.582-7 8-7s8 3.134 8 7-3.582 7-8 7a9 9 0 0 1-2.347-.306c-.52.263-1.639.742-3.468 1.105'/%3E%3Cpath d='M7.066 6.76A1.665 1.665 0 0 0 4 7.668a1.667 1.667 0 0 0 2.561 1.406c-.131.389-.375.804-.777 1.22a.417.417 0 0 0 .6.58c1.486-1.54 1.293-3.214.682-4.112zm4 0A1.665 1.665 0 0 0 8 7.668a1.667 1.667 0 0 0 2.561 1.406c-.131.389-.375.804-.777 1.22a.417.417 0 0 0 .6.58c1.486-1.54 1.293-3.214.682-4.112z'/%3E%3C/svg%3E");
}
.bi-question-circle-nav-menu[b-17rhzoken8] {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M5.255 5.786a.237.237 0 0 0 .241.247h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286zm1.557 5.763c0 .533.425.927 1.01.927.609 0 1.028-.394 1.028-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94z'/%3E%3Cpath d='M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm7-8A7 7 0 1 1 1 8a7 7 0 0 1 14 0z'/%3E%3C/svg%3E");
}
.bi-image-nav-menu[b-17rhzoken8] {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M14.002 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-12a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zm-11 1a1 1 0 0 0-1 1v6l3.5-3.5 2.5 2.5 1.5-1.5 3.5 3.5V5a1 1 0 0 0-1-1z'/%3E%3Cpath d='M10.648 7.646a1.5 1.5 0 1 0-2.121-2.121 1.5 1.5 0 0 0 2.12 2.12'/%3E%3C/svg%3E");
}
.bi-envelope-nav-menu[b-17rhzoken8] {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v.217L8 8.417.002 4.217z'/%3E%3Cpath d='M0 4.697v7.104l5.803-3.558zm6.761 3.396L0 12.13V12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v.13L9.239 8.093 8 8.873z'/%3E%3Cpath d='M16 4.697v7.104l-5.803-3.558z'/%3E%3C/svg%3E");
}
.bi-gear-nav-menu[b-17rhzoken8] {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492zM5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0z'/%3E%3Cpath d='M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a1.873 1.873 0 0 1-2.752 1.066l-.292-.17c-1.64-.95-3.433.842-2.482 2.482l.17.292a1.873 1.873 0 0 1-1.066 2.752l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a1.873 1.873 0 0 1 1.066 2.752l-.17.292c-.95 1.64.842 3.433 2.482 2.482l.292-.17a1.873 1.873 0 0 1 2.752 1.066l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a1.873 1.873 0 0 1 2.752-1.066l.292.17c1.64.95 3.433-.842 2.482-2.482l-.17-.292a1.873 1.873 0 0 1 1.066-2.752l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a1.873 1.873 0 0 1-1.066-2.752l.17-.292c.95-1.64-.842-3.433-2.482-2.482l-.292.17a1.873 1.873 0 0 1-2.752-1.066l-.094-.319z'/%3E%3C/svg%3E");
}
.bi-sliders[b-17rhzoken8] {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11.5 2a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM9.05 3a2.5 2.5 0 0 1 4.9 0H16v1h-2.05a2.5 2.5 0 0 1-4.9 0H0V3zm-1.998 5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM4.6 8a2.5 2.5 0 0 1 4.8 0H16v1H9.4a2.5 2.5 0 0 1-4.8 0H0V8zm7.402 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm-2.45 1a2.5 2.5 0 0 1 4.9 0H16v1h-1.548a2.5 2.5 0 0 1-4.9 0H0v-1z'/%3E%3C/svg%3E");
}
.bi-door-open-nav-menu[b-17rhzoken8] {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M8.5 8.5A.5.5 0 1 1 8.5 7a.5.5 0 0 1 0 1.5'/%3E%3Cpath d='M13 2.5v11a.5.5 0 0 1-.757.429L8 11.101V13.5a.5.5 0 0 1-.276.447l-5 2.5A.5.5 0 0 1 2 16V0a.5.5 0 0 1 .724-.447l5 2.5A.5.5 0 0 1 8 2.5v2.399l4.243-2.828A.5.5 0 0 1 13 2.5'/%3E%3C/svg%3E");
}
.bi-person-lock-nav-menu[b-17rhzoken8] {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M11 5a2 2 0 1 0-4 0v1H6a1 1 0 0 0-1 1v3.5A1.5 1.5 0 0 0 6.5 12h5a1.5 1.5 0 0 0 1.5-1.5V7a1 1 0 0 0-1-1h-1zm-3-1a1 1 0 1 1 2 0v1H8z'/%3E%3C/svg%3E");
}

/* ── Nav items ────────────────────────────────────── */
.nav-item[b-17rhzoken8] {
    font-size: 0.84rem;
    padding-bottom: 0.1rem;
}

.nav-item[b-17rhzoken8]  .nav-link {
    color: #374151;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: right;
    padding: 0.5rem 0.75rem;
    font-weight: 700;
    transition: background .15s, color .15s, border-color .15s;
    text-decoration: none;
}

.nav-item[b-17rhzoken8]  .nav-link:hover {
    background: rgba(0,0,0,.05);
    color: #0f172a;
}

.nav-item[b-17rhzoken8]  .nav-link:hover .bi { opacity: 1; }

/* Active per section */
.nav-group--content .nav-item[b-17rhzoken8]  a.active {
    background: #dcfce7;
    color: #15803d;
    font-weight: 800;
    border-color: #86efac;
    box-shadow: 0 2px 8px rgba(21,128,61,.12);
}

.nav-group--users .nav-item[b-17rhzoken8]  a.active {
    background: #ede9fe;
    color: #5b21b6;
    font-weight: 800;
    border-color: #c4b5fd;
    box-shadow: 0 2px 8px rgba(91,33,182,.1);
}

.nav-group--site .nav-item[b-17rhzoken8]  a.active {
    background: #fef3c7;
    color: #92400e;
    font-weight: 800;
    border-color: #fcd34d;
    box-shadow: 0 2px 8px rgba(146,64,14,.1);
}

.nav-item[b-17rhzoken8]  a.active .bi { opacity: 1; }

.nav-link--ghost[b-17rhzoken8] { opacity: .85; }

/* ── Preview button ───────────────────────────────── */
.nav-preview-btn[b-17rhzoken8] {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff !important;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    transition: opacity .15s, transform .15s;
    box-shadow: 0 4px 14px rgba(234,88,12,.35);
}
.nav-preview-btn:hover[b-17rhzoken8] {
    opacity: .9;
    transform: translateY(-1px);
    color: #fff !important;
}
.nav-preview-btn .bi[b-17rhzoken8] {
    opacity: 1;
    background-color: #fff;
}

/* ── Divider ──────────────────────────────────────── */
.nav-divider[b-17rhzoken8] {
    height: 1px;
    margin: 0.75rem 1rem;
    background: #f1f5f9;
}

/* ── User card ────────────────────────────────────── */
.nav-user[b-17rhzoken8] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.65rem;
    align-items: center;
    margin: auto 0.75rem 0.75rem;
    padding: 0.75rem;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.nav-user__avatar[b-17rhzoken8] {
    display: inline-grid;
    place-items: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #18353d, #2d5a68);
    color: #fff;
    font-weight: 900;
    font-size: .88rem;
}

.nav-user__meta[b-17rhzoken8] { display: grid; min-width: 0; gap: .05rem; }
.nav-user__meta strong[b-17rhzoken8] {
    color: #0f172a;
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nav-user__meta span[b-17rhzoken8] { color: #94a3b8; font-size: 0.72rem; }

.nav-user__logout[b-17rhzoken8] {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    color: #94a3b8;
    text-decoration: none;
    transition: all .14s;
}
.nav-user__logout:hover[b-17rhzoken8] { color: #ef4444; background: #fee2e2; }

/* ── Desktop ──────────────────────────────────────── */
@media (min-width: 641px) {
    .navbar-toggler[b-17rhzoken8] { display: none; }

    .nav-scrollable[b-17rhzoken8] {
        display: flex;
        flex-direction: column;
        min-height: calc(100vh - 4.5rem);
        overflow-y: auto;
        padding: 0.5rem 0.75rem 0.5rem;
        background: #fff;
    }

    .nav-scrollable nav[b-17rhzoken8] { flex: 1; }
}
/* /Components/Layout/PublicLayout.razor.rz.scp.css */
/* ══════════════════════════════════════════════════════
   PublicLayout — Scoped CSS
   ══════════════════════════════════════════════════════ */

.public-shell[b-50bg1r0x5n] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Tajawal', 'Segoe UI', system-ui, -apple-system, sans-serif;
    direction: rtl;
    color: #0f172a;
}

.public-main[b-50bg1r0x5n] {
    flex: 1;
    outline: none;
}

/* ── Skip link ───────────────────────────────────────── */
.skip-link[b-50bg1r0x5n] {
    position: absolute;
    top: -100px;
    left: 0;
    background: #7c3aed;
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 9999;
    border-radius: 0 0 0.5rem 0;
    font-weight: 700;
}

.skip-link:focus[b-50bg1r0x5n] {
    top: 0;
}

/* ══════════════════════════════════════════════════════
   Header
   ══════════════════════════════════════════════════════ */
.site-header[b-50bg1r0x5n] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
}

.site-header:hover[b-50bg1r0x5n] {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.site-header__inner[b-50bg1r0x5n] {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4rem;
    gap: 1.5rem;
}

/* ── Brand ───────────────────────────────────────────── */
.site-brand[b-50bg1r0x5n] {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    gap: 0;
    line-height: 1.15;
    flex-shrink: 0;
}

.site-brand__eyebrow[b-50bg1r0x5n] {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7c3aed;
}

.site-brand__name[b-50bg1r0x5n] {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
}

/* ── Navigation ──────────────────────────────────────── */
.site-nav[b-50bg1r0x5n] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-nav__link[b-50bg1r0x5n] {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    transition: all 0.2s;
    white-space: nowrap;
}

.site-nav__link:hover[b-50bg1r0x5n] {
    background: #f5f3ff;
    color: #7c3aed;
}

.site-nav__link--active[b-50bg1r0x5n] {
    background: #ede9fe;
    color: #7c3aed;
    font-weight: 700;
}

/* ── Header Actions ──────────────────────────────────── */
.site-header__actions[b-50bg1r0x5n] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.site-admin-link[b-50bg1r0x5n] {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.15rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    background: #0f172a;
    color: #fff;
    transition: all 0.2s;
}

.site-admin-link:hover[b-50bg1r0x5n] {
    background: #7c3aed;
    color: #fff;
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════
   Footer
   ══════════════════════════════════════════════════════ */
.site-footer[b-50bg1r0x5n] {
    background: #0f172a;
    color: #94a3b8;
    margin-top: auto;
}

.site-footer__inner[b-50bg1r0x5n] {
    max-width: 80rem;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.site-footer__brand[b-50bg1r0x5n] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer__eyebrow[b-50bg1r0x5n] {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7c3aed;
}

.site-footer__brand strong[b-50bg1r0x5n] {
    font-size: 1.15rem;
    color: #f1f5f9;
}

.site-footer__brand p[b-50bg1r0x5n] {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
    max-width: 28rem;
}

.site-footer__column h3[b-50bg1r0x5n] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e2e8f0;
    margin: 0 0 1rem;
}

.site-footer__links[b-50bg1r0x5n] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.site-footer__links a[b-50bg1r0x5n],
.site-footer__link-group a[b-50bg1r0x5n] {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.site-footer__links a:hover[b-50bg1r0x5n],
.site-footer__link-group a:hover[b-50bg1r0x5n] {
    color: #a78bfa;
}

.site-footer__pill[b-50bg1r0x5n] {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid #1e293b;
    color: #94a3b8;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    margin: 0 0.25rem 0.5rem 0;
    transition: all 0.2s;
}

.site-footer__pill:hover[b-50bg1r0x5n] {
    border-color: #7c3aed;
    color: #a78bfa;
    background: rgba(124, 58, 237, 0.1);
}

.site-footer__pill--accent[b-50bg1r0x5n] {
    border-color: #7c3aed;
    color: #a78bfa;
}

/* ── Footer Bottom ───────────────────────────────────── */
.site-footer__bottom[b-50bg1r0x5n] {
    border-top: 1px solid #1e293b;
}

.site-footer__bottom-inner[b-50bg1r0x5n] {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #475569;
}

/* ══════════════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .site-header__inner[b-50bg1r0x5n] {
        flex-wrap: wrap;
        min-height: auto;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .site-nav[b-50bg1r0x5n] {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        gap: 0.15rem;
    }

    .site-nav__link[b-50bg1r0x5n] {
        font-size: 0.82rem;
        padding: 0.35rem 0.65rem;
    }

    .site-footer__inner[b-50bg1r0x5n] {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1rem;
    }

    .site-footer__bottom-inner[b-50bg1r0x5n] {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Professional brand refresh — Warm palette */
.public-shell[b-50bg1r0x5n] {
    --brand-primary: #ea580c;
    --brand-primary-dark: #c2410c;
    --brand-accent: #f59e0b;
    --brand-ink: #111827;
    --brand-muted: #64748b;
    --brand-line: rgba(234, 88, 12, 0.14);
    --brand-surface: #fffbf5;
    background: #ffffff;
    color: var(--brand-ink);
}

.site-header[b-50bg1r0x5n] {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(234, 88, 12, 0.08);
    box-shadow: 0 1px 0 rgba(124, 45, 18, 0.03);
}

.site-header:hover[b-50bg1r0x5n] {
    box-shadow: 0 12px 32px rgba(234, 88, 12, 0.06);
}

.site-header__inner[b-50bg1r0x5n] {
    min-height: 4.5rem;
}

.site-brand[b-50bg1r0x5n] {
    position: relative;
    padding-inline-start: 3rem;
}

.site-brand[b-50bg1r0x5n]::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 50%;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.75rem;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.2), transparent),
        linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    box-shadow: 0 12px 24px rgba(234, 88, 12, 0.22);
    transform: translateY(-50%);
}

.site-brand[b-50bg1r0x5n]::after {
    content: "";
    position: absolute;
    inset-inline-start: 0.72rem;
    top: 50%;
    width: 0.9rem;
    height: 0.9rem;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-left-color: transparent;
    transform: translateY(-50%) rotate(45deg);
}

.site-brand__eyebrow[b-50bg1r0x5n],
.site-footer__eyebrow[b-50bg1r0x5n] {
    color: var(--brand-primary);
    letter-spacing: 0.04em;
}

.site-brand__name[b-50bg1r0x5n] {
    color: var(--brand-ink);
    letter-spacing: 0;
}

.site-nav[b-50bg1r0x5n] {
    padding: 0.25rem;
    border: 1px solid rgba(234, 88, 12, 0.07);
    border-radius: 9999px;
    background: rgba(255, 247, 237, 0.5);
}

.site-nav__link[b-50bg1r0x5n] {
    border-radius: 0.55rem;
    color: #516267;
}

.site-nav__link:hover[b-50bg1r0x5n],
.site-nav__link--active[b-50bg1r0x5n] {
    background: #fff7ed;
    color: var(--brand-primary-dark);
}

.site-admin-link[b-50bg1r0x5n] {
    border-radius: 9999px;
    background: var(--brand-ink);
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.14);
}

.site-admin-link:hover[b-50bg1r0x5n] {
    background: var(--brand-primary-dark);
}

.site-footer[b-50bg1r0x5n] {
    background: #1c1917;
}

.site-footer__pill:hover[b-50bg1r0x5n],
.site-footer__pill--accent[b-50bg1r0x5n] {
    border-color: rgba(234, 88, 12, 0.45);
    color: #fb923c;
    background: rgba(234, 88, 12, 0.08);
}

.site-footer__links a:hover[b-50bg1r0x5n],
.site-footer__link-group a:hover[b-50bg1r0x5n] {
    color: #fb923c;
}

@media (max-width: 768px) {
    .site-header__inner[b-50bg1r0x5n] {
        padding: 0.85rem 1rem;
    }

    .site-brand[b-50bg1r0x5n] {
        padding-inline-start: 2.65rem;
    }

    .site-brand[b-50bg1r0x5n]::before {
        width: 2rem;
        height: 2rem;
        border-radius: 0.65rem;
    }

    .site-nav[b-50bg1r0x5n] {
        border-radius: 9999px;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-xxlc2r1iwr],
.components-reconnect-repeated-attempt-visible[b-xxlc2r1iwr],
.components-reconnect-failed-visible[b-xxlc2r1iwr],
.components-pause-visible[b-xxlc2r1iwr],
.components-resume-failed-visible[b-xxlc2r1iwr],
.components-rejoining-animation[b-xxlc2r1iwr] {
    display: none;
}

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


#components-reconnect-modal[b-xxlc2r1iwr] {
    display: none !important;
    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-xxlc2r1iwr 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-xxlc2r1iwr {
    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/001_Login/Login.razor.rz.scp.css */
.login-clean-wrapper[b-67le0vtaxh] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top left, rgba(14,165,233,0.05), transparent 40%),
                linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 1rem;
}

.clean-card[b-67le0vtaxh] {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2.2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.login-card__head[b-67le0vtaxh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.login-icon[b-67le0vtaxh] {
    width: 64px;
    height: 64px;
    background: #f0f9ff;
    color: #0284c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.login-card__head h2[b-67le0vtaxh] {
    margin: 0;
    color: #0f172a;
    font-size: 1.75rem;
    font-weight: 800;
}

.login-card__head p[b-67le0vtaxh] {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
}

.login-form[b-67le0vtaxh] {
    display: grid;
    gap: 1.25rem;
}

.field[b-67le0vtaxh] {
    display: grid;
    gap: 0.4rem;
}

.field label[b-67le0vtaxh] {
    font-weight: 600;
    font-size: 0.9rem;
    color: #334155;
}

.form-control[b-67le0vtaxh] {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    transition: all 0.2s;
    background: #f8fafc;
}

.form-control:focus[b-67le0vtaxh] {
    border-color: #0284c7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
    background: #fff;
    outline: none;
}

.btn-dark[b-67le0vtaxh] {
    background: #0f172a;
    color: white;
    padding: 0.85rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-dark:hover[b-67le0vtaxh] {
    background: #1e293b;
}

.w-100[b-67le0vtaxh] { width: 100%; }
.text-center[b-67le0vtaxh] { text-align: center; }
.mt-3[b-67le0vtaxh] { margin-top: 1rem; }
.text-muted[b-67le0vtaxh] { color: #64748b; }
.text-decoration-none[b-67le0vtaxh] { text-decoration: none; }
.text-decoration-none:hover[b-67le0vtaxh] { color: #0284c7; text-decoration: underline; }

.feedback.error[b-67le0vtaxh] {
    background: #fef2f2;
    color: #991b1b;
    padding: 0.85rem;
    border-radius: 12px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
/* /Components/Pages/011_Comments/AdminComments.razor.rz.scp.css */
/* ── Shell ─────────────────────────────────────── */
.ar-mgr-shell[b-37gx46026e] { display: grid; gap: 1.35rem; padding: 0.25rem 0 2rem; }

.ar-mgr-header[b-37gx46026e], .ar-mgr-table-card[b-37gx46026e] {
    border-radius: 28px;
    border: 1px solid rgba(21,40,44,0.1);
    background: rgba(255,255,255,0.84);
    box-shadow: 0 18px 42px rgba(65,44,16,0.08);
}

.ar-mgr-header[b-37gx46026e] {
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; padding: 1.85rem 2rem;
    background: radial-gradient(circle at top left, rgba(14,165,233,0.14), transparent 24%),
                linear-gradient(135deg, rgba(255,255,255,0.92), rgba(240,249,255,0.9));
}
.ar-mgr-header h1[b-37gx46026e] { color: #0f172a; margin: 0; font-size: clamp(1.9rem,3vw,2.55rem); }
.ar-mgr-header p[b-37gx46026e]  { color: #64748b; margin: 0.4rem 0 0; }

.eyebrow[b-37gx46026e] {
    display: inline-block; margin-bottom: 0.45rem;
    color: #0284c7; font-weight: 800; letter-spacing: 0.08em;
    text-transform: uppercase; font-size: 0.76rem;
}

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

/* ── Table Card ────────────────────────────────── */
.ar-mgr-table-card[b-37gx46026e] { padding: 0; overflow: hidden; }

.table-toolbar[b-37gx46026e] {
    display: flex; gap: 0.75rem; flex-wrap: wrap;
    padding: 1rem 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.07);
}
.field[b-37gx46026e] { display: grid; gap: 0.3rem; }
.field--grow[b-37gx46026e] { flex: 1; }

/* Grid columns for Comments */
.ar-mgr-cols[b-37gx46026e] {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 3fr 1fr 1.5fr;
    gap: 0.75rem; align-items: center;
}

.table-head[b-37gx46026e] {
    padding: 0.65rem 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    font-size: 0.78rem; font-weight: 700;
    color: #4b5563; text-transform: uppercase; letter-spacing: 0.04em;
}

.table-row[b-37gx46026e] {
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.15s;
    align-items: start !important; /* Overridden for comments */
}
.table-row:hover[b-37gx46026e] { background: #f0f9ff; }
.table-row:last-child[b-37gx46026e] { border-bottom: none; }

.slug-cell[b-37gx46026e] { color: #6b7280; font-size: 0.83rem; }

/* Client/Article cell */
.ar-mgr-client[b-37gx46026e] { display: flex; align-items: center; gap: 0.8rem; }
.ar-mgr-avatar-placeholder[b-37gx46026e] {
    width: 3.5rem; height: 3.5rem; border-radius: 50%;
    background: #0284c7 !important; color: white !important;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0; font-weight: bold;
}
.ar-mgr-client strong[b-37gx46026e] { font-size: 0.9rem; display: block; margin-bottom: 0.2rem; color: #1e293b; }
.ar-mgr-client .slug-cell[b-37gx46026e] { font-size: 0.75rem; color: #64748b; }

/* Status tags */
.tag[b-37gx46026e] { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 700; }
.status-active[b-37gx46026e]   { background: #dcfce7; color: #166534; }
.status-inactive[b-37gx46026e] { background: #fee2e2; color: #991b1b; }

/* Actions */
.row-actions[b-37gx46026e] { display: flex; gap: 0.35rem; flex-wrap: nowrap; white-space: nowrap; align-items: center; }

/* Pagination */
.pagination-bar[b-37gx46026e] {
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    padding: 1rem; border-top: 1px solid rgba(0,0,0,0.07);
    font-size: 0.85rem; color: #6b7280;
}

.empty-panel[b-37gx46026e] {
    padding: 2.5rem; text-align: center;
    color: #617175; font-weight: 600; font-size: 0.95rem;
}

.feedback[b-37gx46026e] { padding: 0.85rem 1rem; border-radius: 16px; font-weight: 700; }
.feedback.success[b-37gx46026e] { background: #ecf7ef; color: #23643b; }
.feedback.error[b-37gx46026e]   { background: #fff1f1; color: #973535; }

/* ── Modal ─────────────────────────────────────── */
.modal-backdrop[b-37gx46026e] {
    position: fixed; inset: 0; background: rgba(15, 23, 42, 0.6);
    display: flex; align-items: center; justify-content: center;
    z-index: 1000; backdrop-filter: blur(4px);
}
.modal-panel[b-37gx46026e] {
    background: #fff; border-radius: 24px; width: min(95vw, 680px);
    max-height: 90vh; overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    display: grid; grid-template-rows: auto auto 1fr auto;
}
.modal-panel--sm[b-37gx46026e] { width: min(90vw, 420px); }
.modal-head[b-37gx46026e] {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 1.75rem 1rem; border-bottom: 1px solid #f1f5f9;
}
.modal-head h2[b-37gx46026e] { margin: 0; font-size: 1.25rem; color: #0f172a; }
.modal-close[b-37gx46026e] {
    background: none; border: none; font-size: 1.3rem;
    cursor: pointer; color: #9ca3af; line-height: 1;
}
.modal-close:hover[b-37gx46026e] { color: #374151; }
.modal-body[b-37gx46026e] { padding: 1.25rem 1.75rem; display: grid; gap: 1rem; }
.modal-foot[b-37gx46026e] { padding: 1rem 1.75rem 1.5rem; border-top: 1px solid #f1f5f9; display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* ── Responsive ────────────────────────────────── */
@media (max-width: 1100px) {
    /* Optionally keep some responsiveness, but avoid hiding columns if we scroll */
}

@media (max-width: 768px) {
    .two-cols[b-37gx46026e] { grid-template-columns: 1fr; }
    .header-actions[b-37gx46026e] { width: 100%; justify-content: flex-start; }
    .table-toolbar[b-37gx46026e] { flex-direction: column; }
    .table-toolbar .field[b-37gx46026e] { width: 100%; }
    .ar-mgr-header[b-37gx46026e] { flex-direction: column; align-items: flex-start; padding: 1.25rem; gap: 1.25rem; }
    .ar-mgr-table-card[b-37gx46026e] { overflow-x: auto; }
    .ar-mgr-cols[b-37gx46026e] { min-width: 800px; grid-template-columns: 2.5fr 1.5fr 3fr 1fr 1.5fr; }
    /* Ensure no columns are hidden since we can scroll */
    .ar-mgr-cols > *[b-37gx46026e] { display: flex !important; }
}
/* /Components/Pages/Admin.razor.rz.scp.css */
.admin-shell[b-o9vo7m4ncq] {
    display: grid;
    gap: 1.25rem;
    padding: 0.2rem 0 2rem;
}

/* ── Hero ─────────────────────────────────────────────── */
.admin-hero[b-o9vo7m4ncq] {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 0.45fr);
    gap: 1rem;
    padding: 2rem 2.25rem;
    border-radius: 28px;
    border: 1px solid rgba(21, 40, 44, 0.1);
    background:
        radial-gradient(circle at top left, rgba(225, 184, 112, 0.2), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 234, 0.92));
    box-shadow: 0 18px 42px rgba(65, 44, 16, 0.08);
}

.admin-hero__content[b-o9vo7m4ncq] {
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.admin-hero h1[b-o9vo7m4ncq] {
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    margin: 0;
    color: #0f172a;
    font-weight: 900;
}

.admin-hero p[b-o9vo7m4ncq] {
    margin: 0;
    color: #617175;
    line-height: 1.75;
    max-width: 56ch;
}

.admin-hero__aside[b-o9vo7m4ncq] {
    display: flex;
    align-items: stretch;
}

.hero-note[b-o9vo7m4ncq] {
    width: 100%;
    display: grid;
    align-content: start;
    gap: 0.7rem;
    padding: 1.3rem 1.4rem;
    border-radius: 22px;
    background: linear-gradient(145deg, #18353d, #234850);
    color: #fff7e9;
    box-shadow: 0 12px 28px rgba(24, 53, 61, 0.22);
}

.hero-note strong[b-o9vo7m4ncq] { color: #fff; font-size: 1.05rem; }
.hero-note p[b-o9vo7m4ncq] { color: rgba(255,247,233,.75); font-size: 0.88rem; margin: 0; }

.hero-note__links[b-o9vo7m4ncq] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.2rem;
}

.hero-note__links a[b-o9vo7m4ncq] {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(255,255,255,.12);
    color: #eac992 !important;
    text-decoration: none;
    transition: background 0.15s;
}

.hero-note__links a:hover[b-o9vo7m4ncq] { background: rgba(255,255,255,.2); }

.hero-note__label[b-o9vo7m4ncq],
.section-badge[b-o9vo7m4ncq] {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-badge[b-o9vo7m4ncq] {
    background: rgba(24, 53, 61, 0.08);
    color: #8a5b15;
}

.hero-note__label[b-o9vo7m4ncq] {
    background: rgba(255, 255, 255, 0.14);
    color: #eac992;
}

.header-actions[b-o9vo7m4ncq] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

/* ── Stats grid ───────────────────────────────────────── */
.stats-grid[b-o9vo7m4ncq] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.stat-card[b-o9vo7m4ncq] {
    display: grid;
    gap: 0.3rem;
    padding: 1.35rem 1.4rem 1.2rem;
    border-radius: 22px;
    border: 1px solid rgba(21, 40, 44, 0.09);
    background: #fff;
    box-shadow: 0 4px 18px rgba(0,0,0,.05);
    text-decoration: none;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
    border-top: 3px solid var(--accent, #18353d);
    position: relative;
    overflow: hidden;
}

.stat-card[b-o9vo7m4ncq]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--accent, #18353d) 5%, transparent);
    opacity: 0;
    transition: opacity 0.16s;
}

.stat-card:hover[b-o9vo7m4ncq] { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.1); }
.stat-card:hover[b-o9vo7m4ncq]::before { opacity: 1; }

.stat-card__icon[b-o9vo7m4ncq] { font-size: 1.4rem; }

.stat-card strong[b-o9vo7m4ncq] {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
}

.stat-card span[b-o9vo7m4ncq] {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 600;
}

.stat-card--alert[b-o9vo7m4ncq] {
    border-top-color: #dc2626;
    animation: pulse-border-b-o9vo7m4ncq 2s ease-in-out infinite;
}

@keyframes pulse-border-b-o9vo7m4ncq {
    0%, 100% { box-shadow: 0 4px 18px rgba(0,0,0,.05); }
    50% { box-shadow: 0 4px 18px rgba(220,38,38,.18); }
}

.stat-card--skeleton[b-o9vo7m4ncq] {
    min-height: 110px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer-b-o9vo7m4ncq 1.4s infinite;
    border-top-color: #e2e8f0;
    pointer-events: none;
}

@keyframes shimmer-b-o9vo7m4ncq {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* ── Quick section ────────────────────────────────────── */
.quick-section[b-o9vo7m4ncq] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.quick-group[b-o9vo7m4ncq] {
    display: grid;
    gap: 0.6rem;
    padding: 1.1rem 1.2rem;
    border-radius: 22px;
    border: 1px solid rgba(21, 40, 44, 0.09);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 16px rgba(0,0,0,.04);
    align-content: start;
}

.quick-group__label[b-o9vo7m4ncq] {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a5b15;
    background: rgba(24, 53, 61, 0.07);
    display: inline-flex;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    justify-self: start;
    margin-bottom: 0.1rem;
}

.quick-links[b-o9vo7m4ncq] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.quick-link[b-o9vo7m4ncq] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.52rem 0.85rem;
    border-radius: 14px;
    font-size: 0.87rem;
    font-weight: 600;
    color: #1e293b;
    background: #f8fafc;
    border: 1px solid rgba(21, 40, 44, 0.08);
    text-decoration: none;
    transition: background 0.14s, border-color 0.14s, transform 0.14s;
    white-space: nowrap;
}

.quick-link:hover[b-o9vo7m4ncq] {
    background: #f1f5f9;
    border-color: rgba(14, 165, 233, 0.25);
    color: #0f172a;
    transform: translateX(-2px);
}

.quick-link--badge[b-o9vo7m4ncq] {
    background: #fef2f2;
    border-color: rgba(220, 38, 38, 0.2);
    color: #991b1b;
    font-weight: 700;
}

.quick-link--badge:hover[b-o9vo7m4ncq] {
    background: #fee2e2;
    border-color: rgba(220, 38, 38, 0.35);
    color: #7f1d1d;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1100px) {
    .quick-section[b-o9vo7m4ncq] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .stats-grid[b-o9vo7m4ncq] {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .admin-hero[b-o9vo7m4ncq] {
        grid-template-columns: 1fr;
    }

    .admin-hero__aside[b-o9vo7m4ncq] {
        display: none;
    }
}

@media (max-width: 640px) {
    .stats-grid[b-o9vo7m4ncq] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .quick-section[b-o9vo7m4ncq] {
        grid-template-columns: 1fr;
    }

    .admin-hero[b-o9vo7m4ncq] {
        padding: 1.4rem;
    }
}
/* /Components/Pages/AdminArticles.razor.rz.scp.css */
/* ── Shell ─────────────────────────────────────── */
.ar-mgr-shell[b-oguk0tjg1z] { display: grid; gap: 1.35rem; padding: 0.25rem 0 2rem; }

.ar-mgr-header[b-oguk0tjg1z], .ar-mgr-table-card[b-oguk0tjg1z] {
    border-radius: 28px;
    border: 1px solid rgba(21,40,44,0.1);
    background: rgba(255,255,255,0.84);
    box-shadow: 0 18px 42px rgba(65,44,16,0.08);
}

.ar-mgr-header[b-oguk0tjg1z] {
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; padding: 1.85rem 2rem;
    background: radial-gradient(circle at top left, rgba(14,165,233,0.14), transparent 24%),
                linear-gradient(135deg, rgba(255,255,255,0.92), rgba(240,249,255,0.9));
}
.ar-mgr-header h1[b-oguk0tjg1z] { color: #0f172a; margin: 0; font-size: clamp(1.9rem,3vw,2.55rem); }
.ar-mgr-header p[b-oguk0tjg1z]  { color: #64748b; margin: 0.4rem 0 0; }

.eyebrow[b-oguk0tjg1z] {
    display: inline-block; margin-bottom: 0.45rem;
    color: #0284c7; font-weight: 800; letter-spacing: 0.08em;
    text-transform: uppercase; font-size: 0.76rem;
}

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

/* ── Table Card ────────────────────────────────── */
.ar-mgr-table-card[b-oguk0tjg1z] { padding: 0; overflow: hidden; }

.table-toolbar[b-oguk0tjg1z] {
    display: flex; gap: 0.75rem; flex-wrap: wrap;
    padding: 1rem 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.07);
}
.field[b-oguk0tjg1z] { display: grid; gap: 0.3rem; }
.field--grow[b-oguk0tjg1z] { flex: 1; }

/* Grid columns */
.ar-mgr-cols[b-oguk0tjg1z] {
    display: grid;
    grid-template-columns: 0.8fr 3.5fr 1.2fr 0.7fr 1.8fr;
    gap: 0.75rem; align-items: center;
}

.table-head[b-oguk0tjg1z] {
    padding: 0.65rem 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    font-size: 0.78rem; font-weight: 700;
    color: #4b5563; text-transform: uppercase; letter-spacing: 0.04em;
}

.table-row[b-oguk0tjg1z] {
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.15s;
}
.table-row:hover[b-oguk0tjg1z] { background: #f0f9ff; }
.table-row:last-child[b-oguk0tjg1z] { border-bottom: none; }

.slug-cell[b-oguk0tjg1z] { color: #6b7280; font-size: 0.83rem; }

/* Client/Article cell */
.ar-mgr-client[b-oguk0tjg1z] { display: flex; align-items: center; gap: 0.8rem; }
.ar-mgr-avatar[b-oguk0tjg1z] {
    width: 3.5rem; height: 2.5rem; border-radius: 6px;
    object-fit: cover; border: 1px solid #e2e8f0; flex-shrink: 0;
}
.ar-mgr-avatar-placeholder[b-oguk0tjg1z] {
    width: 3.5rem; height: 2.5rem; border-radius: 6px;
    background: #e0f2fe; color: #0284c7;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.ar-mgr-client strong[b-oguk0tjg1z] { font-size: 0.9rem; display: block; margin-bottom: 0.2rem; color: #1e293b; }
.ar-mgr-client .slug-cell[b-oguk0tjg1z] { font-size: 0.75rem; color: #64748b; }

/* Author cell */
.ar-mgr-author[b-oguk0tjg1z] { display: flex; align-items: center; gap: 0.5rem; }
.ar-mgr-avatar-sm[b-oguk0tjg1z] {
    width: 2rem; height: 2rem; border-radius: 50%;
    object-fit: cover; border: 1px solid #e2e8f0; flex-shrink: 0;
}
.ar-mgr-avatar-sm-placeholder[b-oguk0tjg1z] {
    width: 2rem; height: 2rem; border-radius: 50%;
    background: #f1f5f9; color: #64748b;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}

/* Status tags */
.tag[b-oguk0tjg1z] { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 700; }
.status-active[b-oguk0tjg1z]   { background: #dcfce7; color: #166534; }
.status-inactive[b-oguk0tjg1z] { background: #fee2e2; color: #991b1b; }
.featured-yes[b-oguk0tjg1z]    { background: #dbeafe; color: #1e40af; }
.featured-no[b-oguk0tjg1z]     { background: #f3f4f6; color: #6b7280; }
.bg-light[b-oguk0tjg1z]        { background: #f8fafc; color: #475569; border: 1px solid #e2e8f0; }

/* Actions */
.row-actions[b-oguk0tjg1z] { display: flex; gap: 0.35rem; flex-wrap: nowrap; white-space: nowrap; align-items: center; }

/* Pagination */
.pagination-bar[b-oguk0tjg1z] {
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    padding: 1rem; border-top: 1px solid rgba(0,0,0,0.07);
    font-size: 0.85rem; color: #6b7280;
}

.empty-panel[b-oguk0tjg1z] {
    padding: 2.5rem; text-align: center;
    color: #617175; font-weight: 600; font-size: 0.95rem;
}

.feedback[b-oguk0tjg1z] { padding: 0.85rem 1rem; border-radius: 16px; font-weight: 700; }
.feedback.success[b-oguk0tjg1z] { background: #ecf7ef; color: #23643b; }
.feedback.error[b-oguk0tjg1z]   { background: #fff1f1; color: #973535; }

/* ── Modal ─────────────────────────────────────── */
.modal-backdrop[b-oguk0tjg1z] {
    position: fixed; inset: 0; background: rgba(15, 23, 42, 0.6);
    display: flex; align-items: center; justify-content: center;
    z-index: 1000; backdrop-filter: blur(4px);
}
.modal-panel[b-oguk0tjg1z] {
    background: #fff; border-radius: 24px; width: min(95vw, 680px);
    max-height: 90vh; overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    display: grid; grid-template-rows: auto auto 1fr auto;
}
.modal-panel--sm[b-oguk0tjg1z] { width: min(90vw, 420px); }
.modal-head[b-oguk0tjg1z] {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 1.75rem 1rem; border-bottom: 1px solid #f1f5f9;
}
.modal-head h2[b-oguk0tjg1z] { margin: 0; font-size: 1.25rem; color: #0f172a; }
.modal-close[b-oguk0tjg1z] {
    background: none; border: none; font-size: 1.3rem;
    cursor: pointer; color: #9ca3af; line-height: 1;
}
.modal-close:hover[b-oguk0tjg1z] { color: #374151; }
.modal-body[b-oguk0tjg1z] { padding: 1.25rem 1.75rem; display: grid; gap: 1rem; }
.modal-foot[b-oguk0tjg1z] { padding: 1rem 1.75rem 1.5rem; border-top: 1px solid #f1f5f9; display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Form */
.form-grid[b-oguk0tjg1z] { display: grid; gap: 0.75rem; }
.two-cols[b-oguk0tjg1z]  { grid-template-columns: repeat(2, 1fr); }
.field label[b-oguk0tjg1z] { font-weight: 700; font-size: 0.82rem; color: #374151; }
.req[b-oguk0tjg1z] { color: #dc2626; }
.field textarea[b-oguk0tjg1z] { min-height: 80px; }

/* Toggle */
.toggle-label[b-oguk0tjg1z] { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-weight: 600; font-size: 0.85rem; }

/* Spinner */
.spinner[b-oguk0tjg1z] {
    display: inline-block; width: 1rem; height: 1rem;
    border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
    border-radius: 50%; animation: spin-b-oguk0tjg1z 0.6s linear infinite;
}
@keyframes spin-b-oguk0tjg1z { to { transform: rotate(360deg); } }

/* Media Picker */
.media-picker[b-oguk0tjg1z] { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 0.5rem; margin-top: 0.5rem; }
.media-option[b-oguk0tjg1z] { background: none; border: 1px solid #e2e8f0; border-radius: 8px; padding: 0.25rem; cursor: pointer; transition: all 0.2s; display: flex; flex-direction: column; align-items: center; }
.media-option:hover[b-oguk0tjg1z] { border-color: #0ea5e9; background: #f0f9ff; }
.media-option img[b-oguk0tjg1z] { width: 100%; height: 60px; object-fit: cover; border-radius: 4px; margin-bottom: 0.25rem; }
.media-option span[b-oguk0tjg1z] { font-size: 0.65rem; color: #64748b; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; display: block; }
details summary[b-oguk0tjg1z] { cursor: pointer; font-weight: 600; color: #0284c7; margin-top: 0.5rem; margin-bottom: 0.25rem; font-size: 0.85rem; }
details[b-oguk0tjg1z] { margin-top: 0.25rem; }

/* ── Responsive ────────────────────────────────── */
@media (max-width: 1100px) {
    /* Optionally keep some responsiveness, but avoid hiding columns if we scroll */
}

@media (max-width: 768px) {
    .two-cols[b-oguk0tjg1z] { grid-template-columns: 1fr; }
    .header-actions[b-oguk0tjg1z] { width: 100%; justify-content: flex-start; }
    .table-toolbar[b-oguk0tjg1z] { flex-direction: column; }
    .table-toolbar .field[b-oguk0tjg1z] { width: 100%; }
    .ar-mgr-header[b-oguk0tjg1z] { flex-direction: column; align-items: flex-start; padding: 1.25rem; gap: 1.25rem; }
    .ar-mgr-table-card[b-oguk0tjg1z] { overflow-x: auto; }
    .ar-mgr-cols[b-oguk0tjg1z] { min-width: 700px; grid-template-columns: 0.8fr 3.5fr 1.2fr 0.7fr 1.8fr; }
    /* Ensure no columns are hidden since we can scroll */
    .ar-mgr-cols > *[b-oguk0tjg1z] { display: flex !important; }
}

/* ── Article type radio buttons ── */
.type-radio-group[b-oguk0tjg1z] { display: flex; gap: 0.4rem; flex-wrap: wrap; align-items: center; }
.type-radio-item[b-oguk0tjg1z] {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.42rem 1rem; border-radius: 999px; cursor: pointer;
    font-size: 0.86rem; font-weight: 700;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc; color: #475569 !important;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    user-select: none;
}
.type-radio-item input[type="radio"][b-oguk0tjg1z] { display: none; }
.type-radio-item:hover[b-oguk0tjg1z] { background: #f1f5f9; border-color: #cbd5e1; color: #0f172a !important; }
.type-radio-item--active[b-oguk0tjg1z] { background: #18353d !important; border-color: #18353d !important; color: #fff !important; }

/* ── Sort order inline input ── */
.sort-order-cell[b-oguk0tjg1z] { display: flex; align-items: center; }
.sort-order-input[b-oguk0tjg1z] {
    width: 64px; text-align: center; padding: 0.3rem 0.4rem;
    font-size: 0.88rem; font-weight: 700; border-radius: 10px;
    border: 1.5px solid rgba(24,53,61,0.15); background: rgba(24,53,61,0.03);
    color: #18353d; transition: border-color .15s, background .15s;
}
.sort-order-input:focus[b-oguk0tjg1z] { border-color: #18353d; background: #fff; outline: none; }
/* /Components/Pages/AdminFaq.razor.rz.scp.css */
/* ── Shell ─────────────────────────────────────── */
.faq-mgr-shell[b-vza4orvb07] { display: grid; gap: 1.35rem; padding: 0.25rem 0 2rem; }

.faq-mgr-header[b-vza4orvb07], .faq-mgr-table-card[b-vza4orvb07] {
    border-radius: 28px;
    border: 1px solid rgba(21,40,44,0.1);
    background: rgba(255,255,255,0.84);
    box-shadow: 0 18px 42px rgba(65,44,16,0.08);
}

.faq-mgr-header[b-vza4orvb07] {
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; padding: 1.85rem 2rem;
    background: radial-gradient(circle at top left, rgba(234,179,8,0.14), transparent 24%),
                linear-gradient(135deg, rgba(255,255,255,0.92), rgba(254,252,232,0.9));
}
.faq-mgr-header h1[b-vza4orvb07] { color: #18353d; margin: 0; font-size: clamp(1.9rem,3vw,2.55rem); }
.faq-mgr-header p[b-vza4orvb07]  { color: #617175; margin: 0.4rem 0 0; }

.eyebrow[b-vza4orvb07] {
    display: inline-block; margin-bottom: 0.45rem;
    color: #b45309; font-weight: 800; letter-spacing: 0.08em;
    text-transform: uppercase; font-size: 0.76rem;
}

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

/* ── Table Card ────────────────────────────────── */
.faq-mgr-table-card[b-vza4orvb07] { padding: 0; overflow: hidden; }

.table-toolbar[b-vza4orvb07] {
    display: flex; gap: 0.75rem; flex-wrap: wrap;
    padding: 1rem 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.07);
}
.field[b-vza4orvb07] { display: grid; gap: 0.3rem; }
.field--grow[b-vza4orvb07] { flex: 1; }

/* Grid columns */
.faq-mgr-cols[b-vza4orvb07] {
    display: grid;
    grid-template-columns: 2fr 3fr 80px 80px auto;
    gap: 0.75rem; align-items: center;
}

.table-head[b-vza4orvb07] {
    padding: 0.65rem 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    font-size: 0.78rem; font-weight: 700;
    color: #4b5563; text-transform: uppercase; letter-spacing: 0.04em;
}

.table-row[b-vza4orvb07] {
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.15s;
}
.table-row:hover[b-vza4orvb07] { background: #fafbff; }
.table-row:last-child[b-vza4orvb07] { border-bottom: none; }

.slug-cell[b-vza4orvb07] { color: #6b7280; font-size: 0.83rem; }

/* Client cell */
.faq-mgr-client[b-vza4orvb07] { display: flex; align-items: center; gap: 0.6rem; }
.faq-mgr-avatar[b-vza4orvb07] {
    width: 2.75rem; height: 2.75rem; border-radius: 50%;
    object-fit: cover; border: 2px solid #e2e8f0; flex-shrink: 0;
}
.faq-mgr-avatar-placeholder[b-vza4orvb07] {
    width: 2.75rem; height: 2.75rem; border-radius: 50%;
    background: #e0f2fe; color: #0284c7;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.faq-mgr-client strong[b-vza4orvb07] { font-size: 0.88rem; display: block; }
.faq-mgr-client .slug-cell[b-vza4orvb07] { font-size: 0.77rem; }

/* Quote cell */
.faq-mgr-quote[b-vza4orvb07] { color: #374151; font-size: 0.83rem; line-height: 1.5; }

/* Stars */
.faq-mgr-stars[b-vza4orvb07] { white-space: nowrap; }
:global(.star-on)[b-vza4orvb07]  { color: #facc15; font-size: 1rem; }
:global(.star-off)[b-vza4orvb07] { color: #e5e7eb; font-size: 1rem; }

/* Status tags */
.tag[b-vza4orvb07] { display: inline-block; padding: 0.2rem 0.7rem; border-radius: 9999px; font-size: 0.78rem; font-weight: 700; }
.status-active[b-vza4orvb07]   { background: #dcfce7; color: #166534; }
.status-inactive[b-vza4orvb07] { background: #fee2e2; color: #991b1b; }
.featured-yes[b-vza4orvb07]    { background: #dbeafe; color: #1e40af; }
.featured-no[b-vza4orvb07]     { background: #f3f4f6; color: #6b7280; }

/* Actions */
.row-actions[b-vza4orvb07] { display: flex; gap: 0.35rem; flex-wrap: nowrap; white-space: nowrap; align-items: center; }

/* Pagination */
.pagination-bar[b-vza4orvb07] {
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    padding: 1rem; border-top: 1px solid rgba(0,0,0,0.07);
    font-size: 0.85rem; color: #6b7280;
}

.empty-panel[b-vza4orvb07] {
    padding: 2.5rem; text-align: center;
    color: #617175; font-weight: 600; font-size: 0.95rem;
}

.feedback[b-vza4orvb07] { padding: 0.85rem 1rem; border-radius: 16px; font-weight: 700; }
.feedback.success[b-vza4orvb07] { background: #ecf7ef; color: #23643b; }
.feedback.error[b-vza4orvb07]   { background: #fff1f1; color: #973535; }

/* ── Modal ─────────────────────────────────────── */
.modal-backdrop[b-vza4orvb07] {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
    z-index: 1000; backdrop-filter: blur(4px);
}
.modal-panel[b-vza4orvb07] {
    background: #fff; border-radius: 24px; width: min(95vw, 620px);
    max-height: 90vh; overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    display: grid; grid-template-rows: auto auto 1fr auto;
}
.modal-panel--sm[b-vza4orvb07] { width: min(90vw, 420px); }
.modal-head[b-vza4orvb07] {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 1.75rem 1rem; border-bottom: 1px solid #f1f5f9;
}
.modal-head h2[b-vza4orvb07] { margin: 0; font-size: 1.25rem; color: #0f172a; }
.modal-close[b-vza4orvb07] {
    background: none; border: none; font-size: 1.3rem;
    cursor: pointer; color: #9ca3af; line-height: 1;
}
.modal-close:hover[b-vza4orvb07] { color: #374151; }
.modal-body[b-vza4orvb07] { padding: 1.25rem 1.75rem; display: grid; gap: 1rem; }
.modal-foot[b-vza4orvb07] { padding: 1rem 1.75rem 1.5rem; border-top: 1px solid #f1f5f9; display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Form */
.form-grid[b-vza4orvb07] { display: grid; gap: 0.75rem; }
.two-cols[b-vza4orvb07]  { grid-template-columns: repeat(2, 1fr); }
.field label[b-vza4orvb07] { font-weight: 700; font-size: 0.82rem; color: #374151; }
.req[b-vza4orvb07] { color: #dc2626; }
.field textarea[b-vza4orvb07] { min-height: 80px; }

/* Stars input */
.stars-input[b-vza4orvb07] { display: flex; gap: 0.2rem; align-items: center; }
.star-btn[b-vza4orvb07] {
    background: none; border: none; cursor: pointer;
    font-size: 1.5rem; padding: 0; color: #d1d5db; line-height: 1;
    transition: color 0.15s;
}
.star-btn.active[b-vza4orvb07] { color: #facc15; }
.star-btn:hover[b-vza4orvb07]  { color: #fbbf24; }

/* Toggle */
.toggle-label[b-vza4orvb07] { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-weight: 600; font-size: 0.85rem; }

/* Spinner */
.spinner[b-vza4orvb07] {
    display: inline-block; width: 1rem; height: 1rem;
    border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
    border-radius: 50%; animation: spin-b-vza4orvb07 0.6s linear infinite;
}
@keyframes spin-b-vza4orvb07 { to { transform: rotate(360deg); } }

/* ── Responsive ────────────────────────────────── */
@media (max-width: 1100px) { .faq-mgr-cols[b-vza4orvb07] { grid-template-columns: 2fr 2fr 80px auto; } .faq-mgr-cols span:nth-child(4)[b-vza4orvb07] { display: none; } }
@media (max-width: 700px)  { .faq-mgr-cols[b-vza4orvb07] { grid-template-columns: 1fr 1fr; } .two-cols[b-vza4orvb07] { grid-template-columns: 1fr; } .faq-mgr-header[b-vza4orvb07] { flex-direction: column; align-items: flex-start; } }

/* /Components/Pages/AdminMedia.razor.rz.scp.css */
.media-shell[b-mtobyjywh0] { display: grid; gap: 1.35rem; padding: 0.25rem 0 2rem; }

.media-header[b-mtobyjywh0], .media-table-card[b-mtobyjywh0] {
    border-radius: 28px; border: 1px solid rgba(21,40,44,0.1);
    background: rgba(255,255,255,0.84); box-shadow: 0 18px 42px rgba(65,44,16,0.08); backdrop-filter: blur(12px);
}
.media-header[b-mtobyjywh0] {
    display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: 1.85rem 2rem;
    background: radial-gradient(circle at top left, rgba(225,184,112,0.2), transparent 24%), linear-gradient(135deg, rgba(255,255,255,0.92), rgba(249,244,236,0.9));
}
.media-header h1[b-mtobyjywh0] { color: #18353d; margin: 0; font-size: clamp(1.9rem,3vw,2.55rem); }
.media-header p[b-mtobyjywh0] { color: #617175; margin: 0.4rem 0 0; }
.header-actions[b-mtobyjywh0] { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.eyebrow[b-mtobyjywh0] { display: inline-block; margin-bottom: 0.45rem; color: #8a5b15; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.76rem; }

/* ── Table ── */
.media-table-card[b-mtobyjywh0] { padding: 1.4rem; }
.table-toolbar[b-mtobyjywh0] { display: flex; gap: 1rem; margin-bottom: 1rem; }
.field[b-mtobyjywh0] { display: grid; gap: 0.5rem; }
.field--grow[b-mtobyjywh0] { flex: 1; }
.field label[b-mtobyjywh0] { font-weight: 700; color: #18353d; }
.table-head[b-mtobyjywh0] {
    display: grid; grid-template-columns: 80px 1.5fr 1fr 0.8fr 1.2fr; gap: 0.75rem; padding: 0.75rem 1rem;
    border-radius: 16px; background: rgba(24,53,61,0.05); color: #18353d; font-weight: 800; font-size: 0.88rem;
}
.table-row[b-mtobyjywh0] {
    display: grid; grid-template-columns: 80px 1.5fr 1fr 0.8fr 1.2fr; gap: 0.75rem; align-items: center;
    padding: 0.85rem 1rem; border-bottom: 1px solid rgba(24,53,61,0.06); transition: background 0.15s;
}
.table-row:last-child[b-mtobyjywh0] { border-bottom: 0; }
.table-row:hover[b-mtobyjywh0] { background: rgba(168,108,29,0.04); }
.table-row strong[b-mtobyjywh0] { color: #18353d; }
.slug-cell[b-mtobyjywh0] { color: #617175; font-size: 0.92rem; }
.row-actions[b-mtobyjywh0] { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.thumbnail-cell img[b-mtobyjywh0] {
    width: 80px; height: 50px; object-fit: cover; border-radius: 8px; border: 1px solid rgba(24,53,61,0.1); background: #faf6ef;
}

.thumbnail-cell a[b-mtobyjywh0] { display: inline-block; line-height: 0; }

.file-thumb[b-mtobyjywh0] {
    width: 80px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    border: 1px solid rgba(24,53,61,0.1);
    background: #faf6ef;
    color: #617175;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* ── Tags ── */
.tag[b-mtobyjywh0] { padding: 0.35rem 0.7rem; border-radius: 999px; background: rgba(24,53,61,0.08); color: #18353d; font-weight: 700; font-size: 0.84rem; white-space: nowrap; }
.tag.status.published[b-mtobyjywh0] { background: #ecf7ef; color: #23643b; }
.tag.status.draft[b-mtobyjywh0] { background: #fff5e5; color: #9a5d10; }

/* ── Confirm Inline ── */
.confirm-inline[b-mtobyjywh0] { display: flex; gap: 0.5rem; align-items: center; padding: 0.4rem 0.8rem; background: #fff1f1; border-radius: 12px; border: 1px solid rgba(151,53,53,0.2); }
.confirm-inline span[b-mtobyjywh0] { color: #973535; font-size: 0.85rem; font-weight: 700; }

/* ── Modal ── */
.modal-backdrop[b-mtobyjywh0] {
    position: fixed; inset: 0; z-index: 900; display: grid; place-items: center; padding: 1.5rem;
    background: rgba(10,20,24,0.55); backdrop-filter: blur(6px); animation: fadeIn-b-mtobyjywh0 0.2s ease;
}
.modal-panel[b-mtobyjywh0] {
    width: 100%; max-width: 680px; max-height: 88vh; overflow-y: auto;
    border-radius: 28px; background: linear-gradient(180deg, #fff, #faf6ef); border: 1px solid rgba(21,40,44,0.1);
    box-shadow: 0 32px 64px rgba(10,20,24,0.22); padding: 1.6rem; display: grid; gap: 1rem;
    animation: slideUp-b-mtobyjywh0 0.25s ease;
}
.modal-head[b-mtobyjywh0] { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.modal-head h2[b-mtobyjywh0] { margin: 0; color: #18353d; font-size: 1.4rem; }
.modal-head small[b-mtobyjywh0] { color: #617175; }
.modal-close[b-mtobyjywh0] {
    width: 2.4rem; height: 2.4rem; border-radius: 50%; border: 1px solid rgba(24,53,61,0.1);
    background: rgba(24,53,61,0.05); color: #18353d; font-size: 1.1rem; display: grid; place-items: center;
    transition: background 0.15s, transform 0.15s; cursor: pointer;
}
.modal-close:hover[b-mtobyjywh0] { background: rgba(24,53,61,0.12); transform: scale(1.05); }
.modal-foot[b-mtobyjywh0] { display: flex; gap: 0.75rem; flex-wrap: wrap; padding-top: 0.75rem; border-top: 1px solid rgba(24,53,61,0.08); }

/* ── Specific Modal Sections ── */
.upload-section[b-mtobyjywh0] { padding: 1rem; background: rgba(24,53,61,0.04); border-radius: 16px; border: 1px dashed rgba(24,53,61,0.2); }
.upload-section strong[b-mtobyjywh0] { color: #18353d; display: block; margin-bottom: 0.25rem; }
.upload-section p[b-mtobyjywh0] { margin: 0 0 0.8rem; color: #617175; font-size: 0.85rem; }

.usage-section[b-mtobyjywh0] { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(24,53,61,0.08); }
.usage-section strong[b-mtobyjywh0] { color: #18353d; font-size: 0.9rem; }
.usage-list[b-mtobyjywh0] { display: grid; gap: 0.5rem; margin-top: 0.5rem; }
.usage-link[b-mtobyjywh0] { display: grid; padding: 0.7rem 0.85rem; border-radius: 12px; background: rgba(24,53,61,0.04); text-decoration: none; transition: background 0.15s; }
.usage-link:hover[b-mtobyjywh0] { background: rgba(24,53,61,0.08); }
.usage-link strong[b-mtobyjywh0] { color: #18353d; font-size: 0.9rem; }
.usage-link span[b-mtobyjywh0] { color: #617175; font-size: 0.8rem; }

.text-success[b-mtobyjywh0] { color: #23643b; font-weight: 700; }
.text-danger[b-mtobyjywh0] { color: #973535; font-weight: 700; }

/* ── Form Grids ── */
.form-grid[b-mtobyjywh0] { display: grid; gap: 1rem; }
.two-cols[b-mtobyjywh0] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-cols[b-mtobyjywh0] { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* ── Misc ── */
.feedback[b-mtobyjywh0] { padding: 0.85rem 1rem; border-radius: 16px; font-weight: 700; }
.feedback.success[b-mtobyjywh0] { background: #ecf7ef; color: #23643b; }
.feedback.error[b-mtobyjywh0] { background: #fff1f1; color: #973535; }
.empty-panel[b-mtobyjywh0] { padding: 1rem; border-radius: 16px; background: #faf6ef; color: #617175; text-align: center; }

/* ── Pagination ── */
.pagination-bar[b-mtobyjywh0] {
    display: flex; gap: 0.75rem; justify-content: center; align-items: center; padding: 1rem 0 0 0; border-top: 1px solid rgba(24,53,61,0.06); margin-top: 1rem;
}
.pagination-bar span[b-mtobyjywh0] { color: #96a2a5; font-weight: 700; font-size: 0.85rem; }

/* ── Animations ── */
@keyframes fadeIn-b-mtobyjywh0 { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp-b-mtobyjywh0 { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ── Responsive ── */
@media (max-width: 760px) {
    .media-header[b-mtobyjywh0] { flex-direction: column; align-items: flex-start; }
    .table-head[b-mtobyjywh0] { display: none; }
    .table-row[b-mtobyjywh0] { grid-template-columns: 1fr; gap: 0.5rem; padding: 1rem; border-radius: 18px; background: #faf6ef; border: 1px solid rgba(24,53,61,0.06); margin-bottom: 0.75rem; text-align: center; }
    .thumbnail-cell img[b-mtobyjywh0] { width: 100%; height: 160px; }
    .two-cols[b-mtobyjywh0], .three-cols[b-mtobyjywh0] { grid-template-columns: 1fr; }
    .modal-panel[b-mtobyjywh0] { padding: 1.2rem; border-radius: 22px; }
}
/* /Components/Pages/AdminMessages.razor.rz.scp.css */
.messages-shell[b-oap4fyvpr0] { display: grid; gap: 1.35rem; padding: 0.25rem 0 2rem; }

.messages-header[b-oap4fyvpr0], .messages-table-card[b-oap4fyvpr0] {
    border-radius: 28px; border: 1px solid rgba(21,40,44,0.1);
    background: rgba(255,255,255,0.84); box-shadow: 0 18px 42px rgba(65,44,16,0.08); backdrop-filter: blur(12px);
}
.messages-header[b-oap4fyvpr0] {
    display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: 1.85rem 2rem;
    background: radial-gradient(circle at top left, rgba(225,184,112,0.2), transparent 24%), linear-gradient(135deg, rgba(255,255,255,0.92), rgba(249,244,236,0.9));
}
.messages-header h1[b-oap4fyvpr0] { color: #18353d; margin: 0; font-size: clamp(1.9rem,3vw,2.55rem); }
.messages-header p[b-oap4fyvpr0] { color: #617175; margin: 0.4rem 0 0; }
.header-actions[b-oap4fyvpr0] { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.eyebrow[b-oap4fyvpr0] { display: inline-block; margin-bottom: 0.45rem; color: #8a5b15; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.76rem; }

/* ── Table ── */
.messages-table-card[b-oap4fyvpr0] { padding: 1.4rem; }
.table-toolbar[b-oap4fyvpr0] { display: flex; gap: 1rem; margin-bottom: 1rem; }
.field[b-oap4fyvpr0] { display: grid; gap: 0.5rem; }
.field--grow[b-oap4fyvpr0] { flex: 1; }
.field label[b-oap4fyvpr0] { font-weight: 700; color: #18353d; }
.table-head[b-oap4fyvpr0] {
    display: grid; grid-template-columns: 1.2fr 1fr 1fr 0.6fr 1fr; gap: 0.75rem; padding: 0.75rem 1rem;
    border-radius: 16px; background: rgba(24,53,61,0.05); color: #18353d; font-weight: 800; font-size: 0.88rem;
}
.table-row[b-oap4fyvpr0] {
    display: grid; grid-template-columns: 1.2fr 1fr 1fr 0.6fr 1fr; gap: 0.75rem; align-items: center;
    padding: 0.85rem 1rem; border-bottom: 1px solid rgba(24,53,61,0.06); transition: background 0.15s;
}
.table-row:last-child[b-oap4fyvpr0] { border-bottom: 0; }
.table-row:hover[b-oap4fyvpr0] { background: rgba(168,108,29,0.04); }
.table-row strong[b-oap4fyvpr0] { color: #18353d; }
.slug-cell[b-oap4fyvpr0] { color: #617175; font-size: 0.92rem; }
.row-actions[b-oap4fyvpr0] { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.table-row.unread strong[b-oap4fyvpr0]::after {
    content: "";
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #a86c1d;
    margin-inline-start: 0.45rem;
    vertical-align: middle;
}

/* ── Tags ── */
.tag[b-oap4fyvpr0] { padding: 0.35rem 0.7rem; border-radius: 999px; background: rgba(24,53,61,0.08); color: #18353d; font-weight: 700; font-size: 0.84rem; white-space: nowrap; }
.tag.status.replied[b-oap4fyvpr0] { background: #ecf7ef; color: #23643b; }
.tag.status.new[b-oap4fyvpr0] { background: #fff5e5; color: #9a5d10; }
.tag.status.archived[b-oap4fyvpr0] { background: #eef2f5; color: #4d5f67; }

/* ── Modal ── */
.modal-backdrop[b-oap4fyvpr0] {
    position: fixed; inset: 0; z-index: 900; display: grid; place-items: center; padding: 1.5rem;
    background: rgba(10,20,24,0.55); backdrop-filter: blur(6px); animation: fadeIn-b-oap4fyvpr0 0.2s ease;
}
.modal-panel[b-oap4fyvpr0] {
    width: 100%; max-width: 680px; max-height: 88vh; overflow-y: auto;
    border-radius: 28px; background: linear-gradient(180deg, #fff, #faf6ef); border: 1px solid rgba(21,40,44,0.1);
    box-shadow: 0 32px 64px rgba(10,20,24,0.22); padding: 1.6rem; display: grid; gap: 1rem;
    animation: slideUp-b-oap4fyvpr0 0.25s ease;
}
.modal-head[b-oap4fyvpr0] { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.modal-head h2[b-oap4fyvpr0] { margin: 0; color: #18353d; font-size: 1.4rem; }
.modal-head small[b-oap4fyvpr0] { color: #617175; }
.modal-close[b-oap4fyvpr0] {
    width: 2.4rem; height: 2.4rem; border-radius: 50%; border: 1px solid rgba(24,53,61,0.1);
    background: rgba(24,53,61,0.05); color: #18353d; font-size: 1.1rem; display: grid; place-items: center;
    transition: background 0.15s, transform 0.15s; cursor: pointer;
}
.modal-close:hover[b-oap4fyvpr0] { background: rgba(24,53,61,0.12); transform: scale(1.05); }
.modal-foot[b-oap4fyvpr0] { display: flex; gap: 0.75rem; flex-wrap: wrap; padding-top: 0.75rem; border-top: 1px solid rgba(24,53,61,0.08); }

/* ── Detail Specific ── */
.detail-info-grid[b-oap4fyvpr0] { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; background: rgba(24,53,61,0.03); padding: 1rem; border-radius: 18px; }
.detail-info-grid div[b-oap4fyvpr0] { display: grid; gap: 0.3rem; }
.detail-info-grid label[b-oap4fyvpr0] { color: #18353d; font-weight: 700; font-size: 0.88rem; }
.detail-info-grid p[b-oap4fyvpr0] { margin: 0; color: #617175; line-height: 1.8; }
.detail-body[b-oap4fyvpr0] { display: grid; gap: 0.4rem; padding: 1rem; border-radius: 18px; background: rgba(24,53,61,0.03); }
.detail-body label[b-oap4fyvpr0] { color: #18353d; font-weight: 700; font-size: 0.88rem; }
.detail-body p[b-oap4fyvpr0] { margin: 0; color: #617175; line-height: 1.8; white-space: pre-wrap; }
.detail-notes[b-oap4fyvpr0] { display: grid; gap: 0.4rem; }
.detail-notes label[b-oap4fyvpr0] { color: #18353d; font-weight: 700; font-size: 0.88rem; }
.notes-textarea[b-oap4fyvpr0] { min-height: 100px; resize: vertical; }

/* ── Misc ── */
.feedback[b-oap4fyvpr0] { padding: 0.85rem 1rem; border-radius: 16px; font-weight: 700; }
.feedback.success[b-oap4fyvpr0] { background: #ecf7ef; color: #23643b; }
.feedback.error[b-oap4fyvpr0] { background: #fff1f1; color: #973535; }
.empty-panel[b-oap4fyvpr0] { padding: 1rem; border-radius: 16px; background: #faf6ef; color: #617175; text-align: center; }

/* ── Pagination ── */
.pagination-bar[b-oap4fyvpr0] {
    display: flex; gap: 0.75rem; justify-content: center; align-items: center; padding: 1rem 0 0 0; border-top: 1px solid rgba(24,53,61,0.06); margin-top: 1rem;
}
.pagination-bar span[b-oap4fyvpr0] { color: #96a2a5; font-weight: 700; font-size: 0.85rem; }

/* ── Tabs ── */
.msg-tabs[b-oap4fyvpr0] { display: flex; gap: .5rem; }
.msg-tab[b-oap4fyvpr0] {
    padding: .55rem 1.2rem; border-radius: 14px; border: 1px solid rgba(24,53,61,.12);
    background: rgba(24,53,61,.04); color: #617175; font-weight: 700; font-size: .9rem;
    cursor: pointer; transition: background .15s, color .15s; display: flex; align-items: center; gap: .45rem;
}
.msg-tab--active[b-oap4fyvpr0] { background: #18353d; color: #fff; border-color: #18353d; }
.msg-tab__badge[b-oap4fyvpr0] {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 1.35rem; height: 1.35rem; border-radius: 999px; font-size: .72rem; font-weight: 800;
    background: #a86c1d; color: #fff; padding: 0 .3rem;
}
.msg-tab--active .msg-tab__badge[b-oap4fyvpr0] { background: #e8b46c; color: #18353d; }

/* ── Conversation thread ── */
.conv-thread[b-oap4fyvpr0] {
    display: flex; flex-direction: column; gap: .75rem; max-height: 360px; overflow-y: auto;
    padding: 1rem; border-radius: 18px; background: rgba(24,53,61,.03);
}
.conv-bubble[b-oap4fyvpr0] { max-width: 78%; display: flex; flex-direction: column; gap: .2rem; }
.conv-bubble--user[b-oap4fyvpr0] { align-self: flex-end; align-items: flex-end; }
.conv-bubble--admin[b-oap4fyvpr0] { align-self: flex-start; align-items: flex-start; }
.conv-bubble__sender[b-oap4fyvpr0] { font-size: .72rem; font-weight: 700; color: #96a2a5; }
.conv-bubble__body[b-oap4fyvpr0] {
    padding: .6rem .95rem; border-radius: 1rem; font-size: .9rem; line-height: 1.6;
    white-space: pre-wrap; word-break: break-word;
}
.conv-bubble--user .conv-bubble__body[b-oap4fyvpr0] { background: #18353d; color: #fff; border-bottom-right-radius: .25rem; }
.conv-bubble--admin .conv-bubble__body[b-oap4fyvpr0] { background: #fff; border: 1px solid rgba(24,53,61,.1); color: #18353d; border-bottom-left-radius: .25rem; }
.conv-bubble__time[b-oap4fyvpr0] { font-size: .68rem; color: #c5cdd0; }

/* ── Animations ── */
@keyframes fadeIn-b-oap4fyvpr0 { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp-b-oap4fyvpr0 { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ── Responsive ── */
@media (max-width: 760px) {
    .messages-header[b-oap4fyvpr0] { flex-direction: column; align-items: flex-start; }
    .table-head[b-oap4fyvpr0] { display: none; }
    .table-row[b-oap4fyvpr0] { grid-template-columns: 1fr; gap: 0.5rem; padding: 1rem; border-radius: 18px; background: #faf6ef; border: 1px solid rgba(24,53,61,0.06); margin-bottom: 0.75rem; }
    .detail-info-grid[b-oap4fyvpr0] { grid-template-columns: 1fr; }
    .modal-panel[b-oap4fyvpr0] { padding: 1.2rem; border-radius: 22px; }
}
/* /Components/Pages/AdminTestimonials.razor.rz.scp.css */
/* ── Shell ─────────────────────────────────────── */
.tm-mgr-shell[b-wgrp77p398] { display: grid; gap: 1.35rem; padding: 0.25rem 0 2rem; }

.tm-mgr-header[b-wgrp77p398], .tm-mgr-table-card[b-wgrp77p398] {
    border-radius: 28px;
    border: 1px solid rgba(21,40,44,0.1);
    background: rgba(255,255,255,0.84);
    box-shadow: 0 18px 42px rgba(65,44,16,0.08);
}

.tm-mgr-header[b-wgrp77p398] {
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; padding: 1.85rem 2rem;
    background: radial-gradient(circle at top left, rgba(234,179,8,0.14), transparent 24%),
                linear-gradient(135deg, rgba(255,255,255,0.92), rgba(254,252,232,0.9));
}
.tm-mgr-header h1[b-wgrp77p398] { color: #18353d; margin: 0; font-size: clamp(1.9rem,3vw,2.55rem); }
.tm-mgr-header p[b-wgrp77p398]  { color: #617175; margin: 0.4rem 0 0; }

.eyebrow[b-wgrp77p398] {
    display: inline-block; margin-bottom: 0.45rem;
    color: #b45309; font-weight: 800; letter-spacing: 0.08em;
    text-transform: uppercase; font-size: 0.76rem;
}

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

/* ── Table Card ────────────────────────────────── */
.tm-mgr-table-card[b-wgrp77p398] { padding: 0; overflow: hidden; }

.table-toolbar[b-wgrp77p398] {
    display: flex; gap: 0.75rem; flex-wrap: wrap;
    padding: 1rem 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.07);
}
.field[b-wgrp77p398] { display: grid; gap: 0.3rem; }
.field--grow[b-wgrp77p398] { flex: 1; }

/* Grid columns */
.tm-mgr-cols[b-wgrp77p398] {
    display: grid;
    grid-template-columns: 2fr 2.5fr 1fr 0.6fr 0.9fr 0.9fr 2fr;
    gap: 0.75rem; align-items: center;
}

.table-head[b-wgrp77p398] {
    padding: 0.65rem 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    font-size: 0.78rem; font-weight: 700;
    color: #4b5563; text-transform: uppercase; letter-spacing: 0.04em;
}

.table-row[b-wgrp77p398] {
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.15s;
}
.table-row:hover[b-wgrp77p398] { background: #fafbff; }
.table-row:last-child[b-wgrp77p398] { border-bottom: none; }

.slug-cell[b-wgrp77p398] { color: #6b7280; font-size: 0.83rem; }

/* Client cell */
.tm-mgr-client[b-wgrp77p398] { display: flex; align-items: center; gap: 0.6rem; }
.tm-mgr-avatar[b-wgrp77p398] {
    width: 2.75rem; height: 2.75rem; border-radius: 50%;
    object-fit: cover; border: 2px solid #e2e8f0; flex-shrink: 0;
}
.tm-mgr-avatar-placeholder[b-wgrp77p398] {
    width: 2.75rem; height: 2.75rem; border-radius: 50%;
    background: #e0f2fe; color: #0284c7;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.tm-mgr-client strong[b-wgrp77p398] { font-size: 0.88rem; display: block; }
.tm-mgr-client .slug-cell[b-wgrp77p398] { font-size: 0.77rem; }

/* Quote cell */
.tm-mgr-quote[b-wgrp77p398] { color: #374151; font-size: 0.83rem; line-height: 1.5; }

/* Stars */
.tm-mgr-stars[b-wgrp77p398] { white-space: nowrap; }
:global(.star-on)[b-wgrp77p398]  { color: #facc15; font-size: 1rem; }
:global(.star-off)[b-wgrp77p398] { color: #e5e7eb; font-size: 1rem; }

/* Status tags */
.tag[b-wgrp77p398] { display: inline-block; padding: 0.2rem 0.7rem; border-radius: 9999px; font-size: 0.78rem; font-weight: 700; }
.status-active[b-wgrp77p398]   { background: #dcfce7; color: #166534; }
.status-inactive[b-wgrp77p398] { background: #fee2e2; color: #991b1b; }
.featured-yes[b-wgrp77p398]    { background: #dbeafe; color: #1e40af; }
.featured-no[b-wgrp77p398]     { background: #f3f4f6; color: #6b7280; }

/* Actions */
.row-actions[b-wgrp77p398] { display: flex; gap: 0.35rem; flex-wrap: nowrap; white-space: nowrap; align-items: center; }

/* Pagination */
.pagination-bar[b-wgrp77p398] {
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    padding: 1rem; border-top: 1px solid rgba(0,0,0,0.07);
    font-size: 0.85rem; color: #6b7280;
}

.empty-panel[b-wgrp77p398] {
    padding: 2.5rem; text-align: center;
    color: #617175; font-weight: 600; font-size: 0.95rem;
}

.feedback[b-wgrp77p398] { padding: 0.85rem 1rem; border-radius: 16px; font-weight: 700; }
.feedback.success[b-wgrp77p398] { background: #ecf7ef; color: #23643b; }
.feedback.error[b-wgrp77p398]   { background: #fff1f1; color: #973535; }

/* ── Modal ─────────────────────────────────────── */
.modal-backdrop[b-wgrp77p398] {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
    z-index: 1000; backdrop-filter: blur(4px);
}
.modal-panel[b-wgrp77p398] {
    background: #fff; border-radius: 24px; width: min(95vw, 620px);
    max-height: 90vh; overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    display: grid; grid-template-rows: auto auto 1fr auto;
}
.modal-panel--sm[b-wgrp77p398] { width: min(90vw, 420px); }
.modal-head[b-wgrp77p398] {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 1.75rem 1rem; border-bottom: 1px solid #f1f5f9;
}
.modal-head h2[b-wgrp77p398] { margin: 0; font-size: 1.25rem; color: #0f172a; }
.modal-close[b-wgrp77p398] {
    background: none; border: none; font-size: 1.3rem;
    cursor: pointer; color: #9ca3af; line-height: 1;
}
.modal-close:hover[b-wgrp77p398] { color: #374151; }
.modal-body[b-wgrp77p398] { padding: 1.25rem 1.75rem; display: grid; gap: 1rem; }
.modal-foot[b-wgrp77p398] { padding: 1rem 1.75rem 1.5rem; border-top: 1px solid #f1f5f9; display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Form */
.form-grid[b-wgrp77p398] { display: grid; gap: 0.75rem; }
.two-cols[b-wgrp77p398]  { grid-template-columns: repeat(2, 1fr); }
.field label[b-wgrp77p398] { font-weight: 700; font-size: 0.82rem; color: #374151; }
.req[b-wgrp77p398] { color: #dc2626; }
.field textarea[b-wgrp77p398] { min-height: 80px; }

/* Stars input */
.stars-input[b-wgrp77p398] { display: flex; gap: 0.2rem; align-items: center; }
.star-btn[b-wgrp77p398] {
    background: none; border: none; cursor: pointer;
    font-size: 1.5rem; padding: 0; color: #d1d5db; line-height: 1;
    transition: color 0.15s;
}
.star-btn.active[b-wgrp77p398] { color: #facc15; }
.star-btn:hover[b-wgrp77p398]  { color: #fbbf24; }

/* Toggle */
.toggle-label[b-wgrp77p398] { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-weight: 600; font-size: 0.85rem; }

/* Spinner */
.spinner[b-wgrp77p398] {
    display: inline-block; width: 1rem; height: 1rem;
    border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
    border-radius: 50%; animation: spin-b-wgrp77p398 0.6s linear infinite;
}
@keyframes spin-b-wgrp77p398 { to { transform: rotate(360deg); } }

/* ── Responsive ────────────────────────────────── */
@media (max-width: 1100px) { .tm-mgr-cols[b-wgrp77p398] { grid-template-columns: 2fr 2fr 1fr 1fr; } .tm-mgr-cols span:nth-child(4)[b-wgrp77p398], .tm-mgr-cols span:nth-child(5)[b-wgrp77p398] { display: none; } }
@media (max-width: 700px)  { .tm-mgr-cols[b-wgrp77p398] { grid-template-columns: 1fr 1fr; } .two-cols[b-wgrp77p398] { grid-template-columns: 1fr; } .tm-mgr-header[b-wgrp77p398] { flex-direction: column; align-items: flex-start; } }
