h1:focus {
    outline: none;
}

:root {
    --field-border: #cbd5e1;
    --field-border-strong: #2563eb;
    --field-focus-ring: rgba(37, 99, 235, 0.18);
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #666;
    font-size: 0.875rem;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* ===== MUDBLAZOR STYLING FIXES ===== */

/* Reset and Base Styles for MudBlazor */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

/* Apply crisp font to all MudBlazor components */
.mud-typography, .mud-button, .mud-menu-item, .mud-list-item, 
.mud-input, .mud-select, .mud-chip, .mud-tab, .mud-navmenu,
.mud-drawer, .mud-appbar, .mud-table, .mud-card, .mud-dialog {
    font-family: inherit !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure menu items have crisp text */
.mud-list-item-text, .mud-menu-item {
    font-weight: 450;
    letter-spacing: -0.01em;
}

#app {
    height: 100%;
}

/* Enhanced form styling - exclude dialogs that have custom styling */
.mud-paper:not(.campaign-review-dialog .mud-paper):not([style*="background"]) {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 
 * IMPORTANT: Do NOT add global .mud-input* overrides here!
 * MudBlazor's default outlined input styles work correctly out of the box.
 * Adding global overrides with !important breaks label positioning, borders, etc.
 * If you need custom styling for a specific component, use scoped CSS in that component's .razor.css file.
 */

/* Professional button styling */
.mud-button-filled.mud-primary {
    background: linear-gradient(45deg, #1976d2, #1e88e5) !important;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mud-button-filled.mud-primary:hover {
    background: linear-gradient(45deg, #1565c0, #1976d2) !important;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4) !important;
    transform: translateY(-1px) !important;
}

/* Enhanced checkbox styling */
.mud-checkbox {
    margin-right: 8px !important;
}

/* Link styling improvements */
.mud-link {
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.mud-link:hover {
    color: #1565c0 !important;
}

/* Modern utility classes */
.min-vh-100 {
    min-height: 100vh;
}

/* Autofill styling (keep text readable, avoid yellow background) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: #424242 !important;
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

/* Helper text styling */
.mud-input-helper-text {
    font-size: 0.75rem !important;
    margin-top: 4px !important;
}

.validation-message {
    color: #f44336 !important;
    font-size: 0.75rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

.py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 0.75rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

.gap-3 {
    gap: 0.75rem !important;
}

.gap-4 {
    gap: 1rem !important;
}

.text-muted {
    color: #6c757d !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.font-weight-medium {
    font-weight: 500 !important;
}

/* Ensure proper Material Design elevation */
.mud-paper {
    box-shadow: 0px 2px 1px -1px rgba(0,0,0,0.2), 
                0px 1px 1px 0px rgba(0,0,0,0.14), 
                0px 1px 3px 0px rgba(0,0,0,0.12) !important;
}

/* Loading animation improvements */
.mud-progress-circular {
    color: inherit !important;
}

/* Button improvements */
.mud-button-root {
    text-transform: none !important;
    font-weight: 500 !important;
}

/* Alert improvements */
.mud-alert {
    border-radius: 8px !important;
}

/* Form improvements */
.mud-form {
    width: 100%;
}

/* Fix checkbox styling */
.mud-checkbox .mud-button-root {
    border-radius: 4px !important;
}

/* Responsive improvements */
@media (max-width: 600px) {
    .mud-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    .mud-paper {
        margin: 8px !important;
    }
}

/* ===== ADMIN CAMPAIGNS PAGE ===== */
/* Note: Padding handled by scoped AdminCampaigns.razor.css */

.admin-campaigns-page .page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 24px;
}

.admin-campaigns-page .page-header-title {
    font-size: 28px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.admin-campaigns-page .page-header-subtitle {
    color: #6b7280;
    margin: 0;
    font-size: 14px;
}

/* ===== CAMPAIGNS PAGE - HORIZONTAL CARDS ===== */

.campaigns-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
}

.campaign-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.campaign-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.campaign-thumbnail {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

a.campaign-thumbnail {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.campaign-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.campaign-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign-thumbnail .no-creative {
    color: #94a3b8;
}

.campaign-thumbnail .video-thumbnail-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.campaign-thumbnail .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.campaign-thumbnail .video-overlay .mud-icon-root {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.campaign-content {
    flex: 1;
    min-width: 0;
}

.campaign-header {
    margin-bottom: 6px;
}

.campaign-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-divider {
    color: #cbd5e1;
}

.campaign-locations {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #64748b;
    font-size: 0.875rem;
    margin-top: 6px;
}

.campaign-end {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.campaign-cost {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.campaign-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Simplified tabs styling */
.admin-campaigns-tabs .mud-tabs-toolbar {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 0;
}

.campaign-search-bar {
    /* Removed extra margin - container handles spacing */
}

.admin-campaigns-tabs .mud-tab {
    text-transform: none;
    font-weight: 500;
    color: #64748b;
    min-height: 48px;
}

.admin-campaigns-tabs .mud-tab.mud-tab-active {
    color: #1976d2;
    border-bottom: 2px solid #1976d2;
}

.admin-campaigns-tabs .mud-tabs-panels {
    background: transparent;
    padding: 0;
}

/* Admin Campaigns Page - Horizontal Card Layout (Modern Premium Design) */
.campaign-card-horizontal {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    overflow: hidden;
}

.campaign-card-horizontal:hover {
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

/* Thumbnail Styling */
.campaign-card-horizontal .campaign-thumbnail {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0ecff 0%, #f0f4ff 100%);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.campaign-card-horizontal .campaign-thumbnail[style*="cursor: pointer"] {
    cursor: pointer;
}

.campaign-card-horizontal .campaign-thumbnail[style*="cursor: pointer"]:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.campaign-card-horizontal .campaign-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign-card-horizontal .campaign-thumbnail .no-creative {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0ecff 0%, #f0f4ff 100%);
    color: #2563eb;
}

.campaign-card-horizontal .campaign-thumbnail .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.campaign-card-horizontal:hover .campaign-thumbnail .video-overlay {
    opacity: 1;
}

/* Campaign Content Area */
.campaign-card-horizontal .campaign-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.campaign-card-horizontal .campaign-content .campaign-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.campaign-card-horizontal .campaign-content .campaign-header .mud-typography-h6 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #0f172a;
    letter-spacing: -0.01em;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.campaign-card-horizontal .campaign-content .campaign-header .mud-typography-body2 {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.campaign-card-horizontal .campaign-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
}

.campaign-card-horizontal .campaign-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.campaign-card-horizontal .campaign-meta .meta-item .mud-icon-root {
    font-size: 0.875rem;
    color: #94a3b8;
}

.campaign-card-horizontal .campaign-meta .meta-divider {
    margin: 0;
    color: #cbd5e1;
}

.campaign-card-horizontal .campaign-locations {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.campaign-card-horizontal .campaign-locations .mud-icon-root {
    font-size: 14px;
}

/* Styled Action Buttons for Admin Pages */
.action-btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.action-btn-icon.view {
    color: #2563eb;
    border-color: #bfdbfe;
    background: #eff6ff;
}

.action-btn-icon.view:hover {
    background: #dbeafe;
    border-color: #93c5fd;
}

.action-btn-icon.stats {
    color: #7c3aed;
    border-color: #ddd6fe;
    background: #f5f3ff;
}

.action-btn-icon.stats:hover {
    background: #ede9fe;
    border-color: #c4b5fd;
}

.action-btn-icon.approve {
    color: #059669;
    border-color: #a7f3d0;
    background: #ecfdf5;
}

.action-btn-icon.approve:hover {
    background: #d1fae5;
    border-color: #6ee7b7;
}

.action-btn-icon.reject {
    color: #dc2626;
    border-color: #fecaca;
    background: #fef2f2;
}

.action-btn-icon.reject:hover {
    background: #fee2e2;
    border-color: #fca5a5;
}

.action-btn-icon.delete {
    color: #dc2626;
    border-color: #fecaca;
    background: #fef2f2;
}

.action-btn-icon.delete:hover {
    background: #fee2e2;
    border-color: #fca5a5;
}

.action-btn-icon:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Compact Campaign Card End Section - Premium Design */
.campaign-end-compact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    min-width: 160px;
    padding-left: 16px;
}

.campaign-price-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.campaign-price-badge .price {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.campaign-price-badge .badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.campaign-price-badge .badge.prepaid {
    background: #d1fae5;
    color: #065f46;
}

.campaign-price-badge .badge.contact {
    background: #fef3c7;
    color: #92400e;
}

.campaign-price-badge .badge.active {
    background: #dbeafe;
    color: #1e40af;
}

.campaign-price-badge .badge.approved {
    background: #d1fae5;
    color: #065f46;
}

.campaign-price-badge .badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.campaign-price-badge .badge.draft {
    background: #e5e7eb;
    color: #4b5563;
}

.campaign-price-badge .badge.completed {
    background: #e0f2fe;
    color: #1d4ed8;
}

.campaign-price-badge .badge.rejected {
    background: #fee2e2;
    color: #dc2626;
}

.campaign-price-badge .badge.expired {
    background: #fee2e2;
    color: #dc2626;
}

.campaign-price-badge .badge.default {
    background: #f1f5f9;
    color: #64748b;
}

/* Special Campaign Card Variants */
.campaign-card-horizontal.campaign-expired {
    border-color: #fecaca;
    background: linear-gradient(to right, #ffffff 0%, #fef2f2 100%);
}

.campaign-card-horizontal.campaign-missed {
    border-color: #fed7aa;
    background: linear-gradient(to right, #ffffff 0%, #fffbeb 100%);
}

.campaign-card-horizontal.campaign-expired:hover,
.campaign-card-horizontal.campaign-missed:hover {
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.12);
}

.campaign-meta .text-error {
    color: #dc2626 !important;
}

.campaign-meta .text-warning {
    color: #d97706 !important;
}

.campaign-actions-compact {
    display: flex;
    gap: 6px;
    align-items: center;
}

.campaign-actions-compact .action-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.campaign-actions-compact .action-btn.approve {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

.campaign-actions-compact .action-btn.approve:hover {
    background: #059669;
    border-color: #059669;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.campaign-actions-compact .action-btn.reject {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fecaca;
}

.campaign-actions-compact .action-btn.reject:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    transform: scale(1.05);
}

.campaign-actions-compact .action-btn.view {
    background: #eff6ff;
    color: #2563eb;
    border-color: #bfdbfe;
}

.campaign-actions-compact .action-btn.view:hover {
    background: #dbeafe;
    border-color: #93c5fd;
    transform: scale(1.05);
}
    background: #fecaca;
    transform: scale(1.05);
}

.campaign-actions-compact .action-btn.view {
    background: #f1f5f9;
    color: #64748b;
}

.campaign-actions-compact .action-btn.view:hover {
    background: #e2e8f0;
    color: #475569;
    transform: scale(1.05);
}

.campaign-submitted {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #10b981;
    margin-top: 6px;
    font-weight: 500;
}

.campaign-submitted .mud-icon-root {
    font-size: 0.8rem;
    color: #10b981;
}

@media (max-width: 768px) {
    .campaign-card,
    .campaign-card-horizontal {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .campaign-end,
    .campaign-end-compact {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .campaign-cost {
        align-items: flex-start;
    }
}

/* ===== LEAFLET MAP POPUP STYLES ===== */
.device-popup .leaflet-popup-content-wrapper {
    padding: 4px;
    border-radius: 6px;
}

.device-popup .leaflet-popup-content {
    margin: 6px !important;
    font-size: 12px;
    line-height: 1.3;
}

.device-popup .leaflet-popup-content img {
    box-shadow: 0 1px 2px rgba(0,0,0,0.12);
}

/* ===== ADMIN REVIEW DIALOG STYLES ===== */
/* Professional form styling inspired by modern payment forms */

.admin-review-dialog .mud-dialog-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.admin-review-dialog .mud-typography {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Section Headers */
.admin-review-dialog .mud-typography-h5 {
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: 1.25rem;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.admin-review-dialog .mud-typography-h6 {
    font-weight: 600;
    letter-spacing: -0.015em;
    font-size: 1rem;
    line-height: 1.5;
    color: #2b2b2b;
}

/* Form Labels - matching attached form style */
.admin-review-dialog .mud-typography-subtitle1 {
    font-weight: 400;
    letter-spacing: 0;
    font-size: 0.875rem;
    color: #3c3c3c;
    line-height: 1.6;
}

.admin-review-dialog .mud-typography-subtitle2 {
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 0.875rem;
    color: #1a1a1a;
    text-transform: none;
}

/* Body Text */
.admin-review-dialog .mud-typography-body1 {
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.6;
    font-size: 0.9375rem;
    color: #3c3c3c;
}

.admin-review-dialog .mud-typography-body2 {
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
    font-size: 0.875rem;
    color: #3c3c3c;
}

.admin-review-dialog .mud-typography-caption {
    font-weight: 400;
    letter-spacing: 0;
    font-size: 0.75rem;
    color: #707070;
}

/* Buttons - modern rounded style */
.admin-review-dialog .mud-button {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.9375rem;
}

.admin-review-dialog .mud-chip {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
    font-weight: 500;
    letter-spacing: 0;
    border-radius: 6px;
}

/* Input Fields - matching attached form style */
.admin-review-dialog .mud-input,
.admin-review-dialog .mud-input-root,
.admin-review-dialog .mud-select,
.admin-review-dialog .mud-input-control {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
    font-weight: 400;
    font-size: 0.9375rem;
}

/* 
 * NOTE: Do NOT add border styles to .mud-input-outlined directly!
 * MudBlazor uses a separate .mud-input-outlined-border element.
 * Adding borders here causes double-border issues.
 */

/* Paper/Card Elements - clean borders like attached form */
.admin-review-dialog .mud-paper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    box-shadow: none;
}

.admin-review-dialog .mud-paper.mud-elevation-2 {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Stepper Styling */
.admin-review-dialog .mud-stepper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
}

.admin-review-dialog .mud-stepper-label {
    font-weight: 500;
    letter-spacing: 0;
    font-size: 0.9375rem;
}

/* Panel Headers */
.admin-review-dialog .mud-expand-panel-header {
    border-radius: 6px;
    font-weight: 500;
}

/* TextField specific styling for professional appearance */
.admin-review-dialog .mud-input-label {
    font-size: 0.875rem;
    color: #3c3c3c;
    font-weight: 400;
}

.admin-review-dialog .mud-input-helper-text {
    font-size: 0.75rem;
    color: #707070;
}

/* Dividers */
.admin-review-dialog .mud-divider {
    border-color: #e5e5e5;
}

/* Info sections background */
.admin-review-dialog .info-section {
    background-color: #f9f9f9;
    border-radius: 6px;
    padding: 16px;
    border: 1px solid #e5e5e5;
}

/* Checkbox styling - subtle borders */
.admin-review-dialog .mud-checkbox {
    border-radius: 4px;
}

.admin-review-dialog .mud-checkbox .mud-checkbox-input {
    border: 1px solid #d1d1d1 !important;
    border-radius: 4px;
}

.admin-review-dialog .mud-checkbox .mud-checkbox-input:hover {
    border-color: #8a8a8a !important;
}

.admin-review-dialog .mud-checkbox.mud-checked .mud-checkbox-input {
    border-color: #4caf50 !important;
    background-color: #4caf50 !important;
}

/* Content Safety Checklist caption text styling */
.admin-review-dialog .mud-typography-caption {
    font-size: 0.8125rem;
    line-height: 1.4;
}