/* Design System Variables - Light Mode (Default) */
:root {
    --bg-base: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-panel: rgba(241, 245, 249, 0.7);
    --bg-sidebar: rgba(255, 255, 255, 0.9);
    --bg-input: rgba(255, 255, 255, 0.95);
    --border-glass: rgba(15, 23, 42, 0.08);
    --border-active: rgba(5, 107, 79, 0.5);
    
    --primary: hsl(150, 80%, 25%);
    --primary-light: hsl(150, 80%, 35%);
    --primary-hover: hsl(150, 85%, 20%);
    --primary-glow: rgba(5, 107, 79, 0.15);
    
    --accent: hsl(325, 85%, 55%);
    --accent-glow: rgba(219, 39, 119, 0.15);
    
    --success: hsl(142, 70%, 40%);
    --success-bg: rgba(22, 163, 74, 0.1);
    
    --danger: hsl(350, 75%, 50%);
    --danger-bg: rgba(220, 38, 38, 0.08);
    
    --warning: hsl(42, 85%, 45%);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --shadow-premium: 0 8px 32px 0 rgba(15, 23, 42, 0.06);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Overrides */
.dark {
    --bg-base: #08090c;
    --bg-card: rgba(17, 19, 24, 0.65);
    --bg-panel: rgba(26, 29, 38, 0.4);
    --bg-sidebar: rgba(13, 15, 20, 0.85);
    --bg-input: rgba(30, 34, 45, 0.6);
    --border-glass: rgba(255, 255, 255, 0.07);
    --border-active: rgba(5, 107, 79, 0.4);
    
    --primary-glow: rgba(5, 107, 79, 0.3);
    --accent-glow: rgba(219, 39, 119, 0.25);
    
    --success: hsl(142, 70%, 45%);
    --success-bg: rgba(22, 163, 74, 0.15);
    
    --danger: hsl(350, 75%, 55%);
    --danger-bg: rgba(220, 38, 38, 0.15);
    
    --warning: hsl(42, 85%, 55%);
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --shadow-premium: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

/* Reset and Core Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(219, 39, 119, 0.06) 0%, transparent 40%);
    background-attachment: fixed;
}

.welcome-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.welcome-shell {
    display: grid;
    gap: 1.5rem;
    justify-items: center;
}

.welcome-shell h1 {
    font-size: 2rem;
    font-weight: 800;
}

/* App Container Layout */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styling */
.sidebar {
    width: 280px;
    background: var(--bg-sidebar);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--border-glass);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
    img {
        width: 100px;
        height: 100px;
        margin-bottom: 10px;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--primary-glow);
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #fff, #d1d5db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    width: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.nav-link svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.nav-link.active {
    color: #fff;
    background: var(--primary-glow);
    border: 1px solid var(--border-active);
    box-shadow: inset 0 0 8px rgba(124, 58, 237, 0.1);
}

.nav-link.active svg {
    color: var(--primary-light);
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-glass);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

/* Main Content Area */
.main-content {
    flex: 1;
    margin-left: 280px;
    width: calc(100% - 280px);
    max-width: calc(100% - 280px);
    padding: 2.5rem;
    min-height: 100vh;
}

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

.header-title h1 {
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.25rem;
}

.header-title p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

/* Stats Cards Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    cursor: pointer;
    user-select: none;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-light);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon.primary {
    background: rgba(124, 58, 237, 0.12);
    color: var(--primary-light);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.stat-icon.accent {
    background: rgba(219, 39, 119, 0.12);
    color: var(--accent);
    border: 1px solid rgba(219, 39, 119, 0.2);
}

.stat-icon.success {
    background: rgba(22, 163, 74, 0.12);
    color: var(--success);
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Upload Area Grid & Box */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1100px) {
    .dashboard-grid {
        grid-template-columns: 3fr 2fr;
    }
}

.panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-premium);
}

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

.panel-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upload-zone {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 3.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.01);
    position: relative;
    overflow: hidden;
}

.upload-zone:hover {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.02);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.05);
}

.upload-zone.dragging {
    border-color: var(--accent);
    background: rgba(219, 39, 119, 0.04);
}

.upload-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.upload-zone:hover .upload-icon {
    transform: translateY(-5px);
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-light);
}

.upload-text {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.upload-subtext {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Spinner and Loading States */
.processing-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    gap: 1.5rem;
}

.spinner-ring {
    position: relative;
    width: 64px;
    height: 64px;
}

.spinner-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin: 7px;
    border: 4px solid var(--primary);
    border-radius: 50%;
    animation: spinner-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--primary) transparent transparent transparent;
}

.spinner-ring div:nth-child(1) { animation-delay: -0.45s; }
.spinner-ring div:nth-child(2) { animation-delay: -0.3s; }
.spinner-ring div:nth-child(3) { animation-delay: -0.15s; }

@keyframes spinner-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.processing-text {
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.2px;
}

.processing-sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: -1rem;
    animation: pulse-opacity 1.5s infinite;
}

@keyframes pulse-opacity {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Editor Section */
.editor-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 900px) {
    .editor-layout {
        grid-template-columns: 1.2fr 1.8fr;
    }
}.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.15);
    background-color: var(--bg-input);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Regional Badge Mappings */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-north { background: rgba(20, 184, 166, 0.12); color: #2dd4bf; border: 1px solid rgba(20, 184, 166, 0.2); }
.badge-yorkshire { background: rgba(249, 115, 22, 0.12); color: #fb923c; border: 1px solid rgba(249, 115, 22, 0.2); }
.badge-wmidlands { background: rgba(168, 85, 247, 0.12); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.2); }
.badge-emidlands { background: rgba(59, 130, 246, 0.12); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.2); }
.badge-south { background: rgba(236, 72, 153, 0.12); color: #f472b6; border: 1px solid rgba(236, 72, 153, 0.2); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary));
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-danger {
    background: rgba(220, 38, 38, 0.1);
    color: var(--danger);
    border-color: rgba(220, 38, 38, 0.2);
}

.btn-danger:hover {
    background: var(--danger-bg);
    border-color: var(--danger);
}

.editor-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-glass);
}

.actions-group {
    display: flex;
    gap: 0.75rem;
}

.ig-header {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ig-username {
    margin-left: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.ig-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.ig-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ig-actions {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    font-size: 1.25rem;
}

.ig-actions svg {
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: #f5f5f5;
    transition: transform 0.1s ease;
}

.ig-actions svg:hover {
    transform: scale(1.1);
}

.ig-likes {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0 0.75rem 0.25rem 0.75rem;
}

.ig-caption-box {
    padding: 0.25rem 0.75rem 0.75rem 0.75rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.ig-caption-text {
    white-space: pre-wrap;
    word-break: break-word;
}

.ig-caption-text strong {
    font-weight: 600;
    margin-right: 0.35rem;
}

.ig-time {
    font-size: 0.65rem;
    color: #8e8e8e;
    text-transform: uppercase;
    margin-top: 0.5rem;
    letter-spacing: 0.2px;
}

/* History Table Styling */
.history-table-container {
    overflow-x: auto;
    width: 100%;
    margin-top: 1rem;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.history-table th {
    padding: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-glass);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.history-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: middle;
}

.history-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.draft { background: rgba(107, 114, 128, 0.12); color: #9ca3af; border: 1px solid rgba(107, 114, 128, 0.2); }
.status-badge.simulated { background: rgba(59, 130, 246, 0.12); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.2); }
.status-badge.posted { background: rgba(34, 197, 94, 0.12); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }

/* Settings View Layout */
.settings-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.settings-group {
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 1.5rem;
}

.settings-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.settings-group-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    border-left: 3px solid var(--primary);
    padding-left: 0.75rem;
}

.settings-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .settings-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.toggle-switch {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.toggle-input {
    display: none;
}

.toggle-slider {
    width: 44px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-glass);
}

.toggle-slider::before {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 4px;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-slider {
    background-color: var(--primary);
}

.toggle-input:checked + .toggle-slider::before {
    transform: translateX(18px);
}

/* Banner Alert notifications */
.alert {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 99999;
    min-width: 320px;
    max-width: 450px;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    border: 1px solid transparent;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.alert-transition-enter {
    animation: alert-slide-in 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.alert-transition-leave {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
}

@keyframes alert-slide-in {
    from {
        transform: translateY(-20px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.alert-success {
    background-color: rgba(22, 163, 74, 0.25);
    color: var(--success);
    border-color: rgba(34, 197, 94, 0.3);
}

.alert-danger {
    background-color: rgba(220, 38, 38, 0.25);
    color: var(--danger);
    border-color: rgba(220, 38, 38, 0.3);
}

.alert-warning {
    background-color: rgba(245, 158, 11, 0.2);
    color: var(--warning);
    border-color: rgba(245, 158, 11, 0.3);
}

/* Modals / Overlays */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 9, 12, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: modal-fade-in 0.25s ease-out;
}

.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    width: 100%;
    max-width: 650px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    max-height: 90vh;
    overflow-y: auto;
    animation: modal-slide-up 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes modal-slide-up {
    from { transform: translateY(20px) scale(0.98); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

/* Social Badges */
.social-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.social-badge.facebook {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.2);
}

.social-badge.facebook:hover {
    background: #1877f2;
    color: #fff;
    box-shadow: 0 0 12px rgba(24, 119, 242, 0.4);
}

.social-badge.instagram {
    background: rgba(219, 39, 119, 0.1);
    color: var(--accent);
    border-color: rgba(219, 39, 119, 0.2);
}

.social-badge.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    box-shadow: 0 0 12px rgba(219, 39, 119, 0.4);
}

.social-badge.tiktok {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: var(--border-glass);
}

.social-badge.tiktok:hover {
    background: #010101;
    border-color: #00f2fe;
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.4);
    color: #fff;
}

.social-badge.disabled {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.03);
    cursor: not-allowed;
    pointer-events: none;
}

/* Modal Form Grid */
.modal-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-span-2 {
    grid-column: span 2;
}

/* Post History & Mosque Filter Grids */
.filter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    border: 1px solid var(--border-glass);
}

.filter-search {
    grid-column: span 2;
}

.mosque-filter-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.mosque-filter-search {
    grid-column: span 2;
}

/* Responsive Scaling Rules */
@media (max-width: 992px) {
    .app-container {
        flex-direction: column;
    }
    
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        padding: 1.5rem;
        border-right: none;
        border-bottom: 1px solid var(--border-glass);
    }
    
    .logo-container {
        margin-bottom: 1.5rem;
        justify-content: center;
    }
    
    .nav-menu {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        justify-content: center;
        width: auto;
    }
    
    .sidebar-footer {
        display: none;
    }
    
    .main-content {
        margin-left: 0;
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .mosque-filter-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mosque-filter-search {
        grid-column: span 3;
    }
    
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    
    .header-actions {
        width: 100%;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .header-actions button, 
    .header-actions a {
        flex: 1;
        min-width: 130px;
    }
}

@media (max-width: 768px) {
    .filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mosque-filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mosque-filter-search {
        grid-column: span 2;
    }
    .csp-style-0022 {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    .csp-style-0023 {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    .csp-style-0025 {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .main-content {
        padding: 1rem;
    }
    
    .panel {
        padding: 1.25rem;
    }
    
    .modal-form-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .form-span-2 {
        grid-column: span 1;
    }
    
    .modal-card {
        padding: 1.25rem;
    }
    
    .csp-style-0192 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .filter-grid {
        grid-template-columns: 1fr;
    }
    .filter-search {
        grid-column: span 1;
    }
    .mosque-filter-grid {
        grid-template-columns: 1fr;
    }
    .mosque-filter-search {
        grid-column: span 1;
    }
}@media (max-width: 1024px) {}.conceal-style-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.style-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.style-card svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: all 0.25s ease;
}

.style-card:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.style-card.active {
    background: rgba(147, 197, 253, 0.15);
    border-color: var(--primary-light);
    color: var(--text-primary);
}

.style-card.active svg {
    color: var(--primary-light);
}

.scanline-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    opacity: 0.6;
    animation: scan 4s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% { top: 0%; }
    100% { top: 100%; }
}@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px rgba(147, 197, 253, 0.2);
    }
    100% {
        box-shadow: 0 0 15px rgba(147, 197, 253, 0.6);
    }
}

/* Spacious Table Layout Styles */
.table-container {
    overflow-x: auto;
    width: 100%;
    margin-top: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(10px);
}

.table-content {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.table-content th {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-glass);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.75px;
    background: rgba(255, 255, 255, 0.01);
}

.table-content td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-glass);
    vertical-align: middle;
    color: var(--text-secondary);
}

.table-content tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

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

/* Table Action Buttons with Pointer Cursor */
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    background: var(--bg-input);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.action-btn:hover {
    color: var(--text-primary);
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.05);
}

.action-btn-edit:hover {
    color: var(--primary-light);
    border-color: var(--primary-light);
}

.action-btn-delete:hover {
    color: var(--danger);
    border-color: var(--danger);
    background: var(--danger-bg);
}


/* CSP extracted inline styles */
.csp-style-0001 { font-family: 'Outfit', sans-serif; }
.csp-style-0002 { display: flex; align-items: center; gap: 0.75rem; }
.csp-style-0003 { position: relative; }
.csp-style-0004 { background: var(--bg-card); border: 1px solid var(--border-glass); padding: 0.5rem 0.75rem; border-radius: 12px; backdrop-filter: blur(10px); cursor: pointer; color: var(--text-primary); position: relative; display: flex; align-items: center; justify-content: center; height: 38px; width: 38px; transition: all 0.2s; }
.csp-style-0005 { width: 20px; height: 20px; }
.csp-style-0006 { position: absolute; top: -3px; right: -3px; background: var(--accent); color: var(--text-primary); font-size: 0.65rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 8px rgba(236, 72, 153, 0.5); }
.csp-style-0007 { display: none; position: absolute; right: 0; top: 46px; width: 320px; background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 16px; box-shadow: var(--shadow-premium); backdrop-filter: blur(15px); z-index: 1000; overflow: hidden; max-height: 400px; display: flex; flex-direction: column; }
.csp-style-0008 { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border-glass); display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.02); }
.csp-style-0009 { font-weight: 700; font-size: 0.85rem; color: var(--text-primary); }
.csp-style-0010 { background: none; border: none; color: var(--primary-light); font-size: 0.75rem; font-weight: 600; cursor: pointer; }
.csp-style-0011 { overflow-y: auto; flex: 1; max-height: 300px; }
.csp-style-0012 { flex: 1; }
.csp-style-0013 { font-size: 0.78rem; color: var(--text-primary); margin: 0; line-height: 1.4; }
.csp-style-0014 { font-size: 0.65rem; color: var(--text-muted); display: block; margin-top: 0.25rem; }
.csp-style-0015 { padding: 2rem; text-align: center; color: var(--text-muted); font-size: 0.8rem; }
.csp-style-0016 { display: flex; align-items: center; gap: 0.75rem; background: var(--bg-card); border: 1px solid var(--border-glass); padding: 0.5rem 1rem; border-radius: 12px; backdrop-filter: blur(10px); height: 38px; }
.csp-style-0017 { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }
.csp-style-0018 { color: var(--text-primary); font-size: 0.85rem; font-weight: 600; }
.csp-style-0019 { height: 38px; }
.csp-style-0020 { width: 18px; height: 18px; vertical-align: middle; margin-right: 6px; }
.csp-style-0021 { width: 20px; height: 20px; vertical-align: middle; margin-right: 8px; }
.csp-style-0022 { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: center; justify-content: space-between; }
.csp-style-0023 { display: flex; gap: 1rem; flex: 1; }
.csp-style-0024 { margin-bottom: 0; flex: 1; }
.csp-style-0025 { margin-bottom: 0; width: 200px; }
.csp-style-0026 { text-align: right; }
.csp-style-0027 { font-weight: 600; color: var(--text-primary); }
.csp-style-0028 { background: rgba(139, 92, 246, 0.15); color: hsl(262, 80%, 70%); border-color: rgba(139, 92, 246, 0.25); }
.csp-style-0029 { background: rgba(16, 185, 129, 0.15); color: #34d399; border-color: rgba(16, 185, 129, 0.25); }
.csp-style-0030 { background: rgba(16, 185, 129, 0.15); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.25); }
.csp-style-0031 { background: rgba(239, 68, 68, 0.15); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.25); }
.csp-style-0032 { color: var(--text-muted); font-size: 0.8rem; }
.csp-style-0033 { font-size: 0.8rem; max-width: 320px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
.csp-style-0034 { text-align: right; white-space: nowrap; }
.csp-style-0035 { width: 15px; height: 15px; }
.csp-style-0036 { text-align: center; color: var(--text-muted); padding: 3rem 0; }
.csp-style-0037 { font-size: 0.75rem; color: var(--text-secondary); }
.csp-style-0038 { font-weight: 500; }
.csp-style-0039 { font-size: 0.75rem; color: var(--text-muted); }
.csp-style-0040 { font-weight: 500; color: var(--primary-light); }
.csp-style-0041 { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; }
.csp-style-0042 { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border-color: rgba(245, 158, 11, 0.25); }
.csp-style-0043 { display: grid; grid-template-columns: 1.3fr 1fr; gap: 1.5rem; align-items: start; }
.csp-style-0044 { margin-bottom: 1.5rem; }
.csp-style-0045 { margin-bottom: 1rem; }
.csp-style-0046 { color: var(--text-primary); font-size: 0.95rem; font-weight: 700; margin: 0; display: flex; align-items: center; gap: 0.5rem; }
.csp-style-0047 { width: 16px; height: 16px; color: var(--primary-light); }
.csp-style-0048 { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 0.75rem; align-items: flex-end; }
.csp-style-0049 { margin-bottom: 0; }
.csp-style-0050 { font-size: 0.75rem; margin-bottom: 0.25rem; }
.csp-style-0051 { color: var(--accent); }
.csp-style-0052 { font-size: 0.85rem; height: 36px; padding: 0 0.75rem; }
.csp-style-0053 { font-size: 0.7rem; color: var(--danger); display: block; margin-top: 0.15rem; }
.csp-style-0054 { display: flex; gap: 0.5rem; align-items: flex-end; }
.csp-style-0055 { height: 36px; min-height: auto; padding: 0 1rem; font-size: 0.8rem; font-weight: 600; flex-shrink: 0; }
.csp-style-0056 { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-glass); padding-bottom: 1rem; margin-bottom: 1rem; }
.csp-style-0057 { display: flex; align-items: center; gap: 0.5rem; margin: 0; }
.csp-style-0058 { width: 20px; height: 20px; color: var(--primary-light); }
.csp-style-0059 { display: flex; gap: 0.5rem; }
.csp-style-0060 { padding: 0.25rem 0.6rem; min-height: auto; font-size: 0.75rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.25rem; }
.csp-style-0061 { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.4rem; text-align: center; }
.csp-style-0062 { color: var(--text-secondary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; padding: 0.5rem 0; border-bottom: 1px solid var(--border-glass); }
.csp-style-0063 { background: rgba(255,255,255,0.01); border-radius: 8px; min-height: 70px; opacity: 0.05; border: 1px dashed transparent; }
.csp-style-0064 { display: flex; gap: 0.25rem; margin-top: 0.5rem; flex-wrap: wrap; }
.csp-style-0065 { display: inline-block; width: 6px; height: 6px; background-color: #10b981; border-radius: 50%; }
.csp-style-0066 { display: inline-block; width: 6px; height: 6px; background-color: #3b82f6; border-radius: 50%; }
.csp-style-0067 { margin-bottom: 1rem; border-bottom: 1px solid var(--border-glass); padding-bottom: 0.75rem; }
.csp-style-0068 { max-height: 480px; overflow-y: auto; padding-right: 0.25rem; }
.csp-style-0069 { padding: 1rem; background: var(--bg-input); border: 1px solid var(--border-glass); border-radius: 8px; margin-bottom: 0.75rem; position: relative; }
.csp-style-0070 { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; }
.csp-style-0071 { font-weight: 700; color: var(--text-primary); font-size: 0.9rem; }
.csp-style-0072 { display: flex; gap: 0.35rem; align-items: center; }
.csp-style-0073 { font-size: 0.65rem; padding: 0.15rem 0.35rem; border-radius: 4px; display: inline-flex; align-items: center; gap: 0.2rem; min-height: auto; border: 1px solid var(--border-glass); }
.csp-style-0074 { font-size: 0.65rem; padding: 0.15rem 0.35rem; border-radius: 4px; margin-bottom: 0; }
.csp-style-0075 { font-size: 0.65rem; padding: 0.15rem 0.35rem; border-radius: 4px; background: rgba(59, 130, 246, 0.15); color: #60a5fa; border-color: rgba(59, 130, 246, 0.25); margin-bottom: 0; }
.csp-style-0076 { color: var(--primary-light); font-size: 0.95rem; margin: 0.25rem 0; font-weight: 600; }
.csp-style-0077 { font-size: 0.8rem; color: var(--text-secondary); margin-top: 0.25rem; }
.csp-style-0078 { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.15rem; }
.csp-style-0079 { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.4rem; font-style: italic; background: rgba(255,255,255,0.01); padding: 0.35rem 0.5rem; border-radius: 4px; border-left: 2px solid var(--border-glass); }
.csp-style-0080 { text-align: center; color: var(--text-muted); padding: 3rem 0; border: 1px dashed var(--border-glass); border-radius: 8px; }
.csp-style-0081 { margin-bottom: 0.75rem; }
.csp-style-0082 { padding-top: 0.25rem; }
.csp-style-0083 { color: var(--text-primary); font-size: 1.05rem; margin-bottom: 0.25rem; font-weight: 600; }
.csp-style-0084 { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; margin-bottom: 0.5rem; }
.csp-style-0085 { font-size: 0.65rem; background: rgba(139, 92, 246, 0.15); color: hsl(262, 80%, 70%); border-color: rgba(139, 92, 246, 0.25); margin-bottom: 0; }
.csp-style-0086 { font-size: 0.75rem; color: var(--accent); font-weight: 600; }
.csp-style-0087 { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.csp-style-0088 { margin-top: 0.75rem; font-size: 0.8rem; color: var(--text-secondary); border-top: 1px solid var(--border-glass); padding-top: 0.75rem; }
.csp-style-0089 { margin-top: 0.25rem; font-size: 0.75rem; line-height: 1.4; color: var(--text-muted); }
.csp-style-0090 { margin-top: 0.75rem; font-size: 0.8rem; color: var(--text-secondary); }
.csp-style-0091 { padding: 1rem 0; }
.csp-style-0092 { border: 1px solid var(--border-glass); border-radius: 12px; background: rgba(255,255,255,0.02); padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; gap: 2rem; }
.csp-style-0093 { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 0.5rem; }
.csp-style-0094 { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border-color: rgba(245, 158, 11, 0.25); font-size: 0.7rem; }
.csp-style-0095 { font-size: 0.8rem; color: var(--text-muted); }
.csp-style-0096 { color: var(--text-primary); font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 600; }
.csp-style-0097 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 2rem; font-size: 0.85rem; color: var(--text-secondary); }
.csp-style-0098 { grid-column: span 2; border-top: 1px dashed var(--border-glass); padding-top: 0.5rem; margin-top: 0.25rem; }
.csp-style-0099 { color: var(--text-primary); }
.csp-style-0100 { display: flex; gap: 0.75rem; shrink: 0; }
.csp-style-0101 { text-align: center; color: var(--text-muted); padding: 4rem 0; border: 1px dashed var(--border-glass); border-radius: 12px; }
.csp-style-0102 { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.5rem; align-items: start; }
.csp-style-0103 { margin-bottom: 1.5rem; display: flex; align-items: center; border-color: var(--danger); background: rgba(220,38,38,0.05); color: var(--danger); }
.csp-style-0104 { width: 20px; height: 20px; margin-right: 8px; }
.csp-style-0105 { font-size: 0.8rem; color: var(--danger); margin-top: 0.25rem; display: block; }
.csp-style-0106 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.csp-style-0107 { margin-top: 2rem; }
.csp-style-0108 { padding-top: 0.5rem; }
.csp-style-0109 { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.csp-style-0110 { color: var(--text-primary); font-size: 1.1rem; margin-bottom: 0.25rem; }
.csp-style-0111 { margin-top: 0.25rem; font-size: 0.8rem; color: var(--accent); font-weight: 600; }
.csp-style-0112 { margin-top: 1rem; font-size: 0.85rem; color: var(--text-secondary); border-top: 1px solid var(--border-glass); padding-top: 1rem; }
.csp-style-0113 { margin-top: 0.25rem; font-size: 0.8rem; line-height: 1.4; color: var(--text-muted); }
.csp-style-0114 { margin-top: 1rem; font-size: 0.85rem; color: var(--text-secondary); }
.csp-style-0115 { display: flex; gap: 0.75rem; margin-top: 0.35rem; align-items: center; flex-wrap: wrap; }
.csp-style-0116 { text-align: center; color: var(--text-muted); padding: 3rem 0; border: 1px dashed var(--border-glass); border-radius: 12px; font-size: 0.85rem; }
.csp-style-0117 { margin-bottom: 2rem; }
.csp-style-0118 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; align-items: flex-end; }
.csp-style-0119 { margin-top: 1.25rem; display: flex; justify-content: flex-end; gap: 0.75rem; }
.csp-style-0120 { height: 40px; padding: 0 1.5rem; }
.csp-style-0121 { height: 40px; padding: 0 2rem; }
.csp-style-0122 { border-top: 1px solid var(--border-glass); padding-top: 1.5rem; }
.csp-style-0123 { color: var(--text-primary); font-size: 1rem; margin-bottom: 1rem; }
.csp-style-0124 { color: var(--primary-light); font-weight: 600; }
.csp-style-0125 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.csp-style-0126 { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem; background: var(--bg-input); border: 1px solid var(--border-glass); border-radius: 12px; gap: 2rem; }
.csp-style-0127 { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.csp-style-0128 { font-weight: 600; color: var(--text-primary); font-size: 1.05rem; }
.csp-style-0129 { font-size: 0.7rem; margin-bottom: 0; }
.csp-style-0130 { font-size: 0.65rem; background: rgba(59, 130, 246, 0.1); color: #60a5fa; border-color: rgba(59, 130, 246, 0.2); margin-bottom: 0; }
.csp-style-0131 { font-size: 0.65rem; background: rgba(16, 185, 129, 0.1); color: #34d399; border-color: rgba(16, 185, 129, 0.2); margin-bottom: 0; }
.csp-style-0132 { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; line-height: 1.4; }
.csp-style-0133 { display: flex; gap: 0.5rem; margin-top: 0.5rem; flex-wrap: wrap; align-items: center; }
.csp-style-0134 { font-size: 0.75rem; color: var(--danger); margin-top: 0.5rem; display: flex; align-items: center; gap: 0.25rem; }
.csp-style-0135 { width: 14px; height: 14px; }
.csp-style-0136 { padding: 0.5rem 1rem; font-size: 0.85rem; shrink: 0; min-height: auto; opacity: 0.5; }
.csp-style-0137 { color: var(--text-secondary); text-align: center; padding: 2rem; }
.csp-style-0138 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.5rem; align-items: start; }
.csp-style-0139 { margin-bottom: 0.5rem; display: block; }
.csp-style-0140 { display: flex; gap: 2rem; align-items: center; background: var(--bg-input); border: 1px solid var(--border-glass); padding: 0.75rem 1rem; border-radius: 8px; }
.csp-style-0141 { display: flex; align-items: center; gap: 0.5rem; color: var(--text-primary); cursor: pointer; font-size: 0.9rem; }
.csp-style-0142 { accent-color: var(--primary); scale: 1.15; cursor: pointer; }
.csp-style-0143 { margin-top: 1rem; }
.csp-style-0144 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; background: var(--bg-input); border: 1px solid var(--border-glass); padding: 0.75rem; border-radius: 8px; }
.csp-style-0145 { display: flex; align-items: center; gap: 0.5rem; color: var(--text-primary); cursor: pointer; font-size: 0.85rem; margin-bottom: 0; }
.csp-style-0146 { accent-color: var(--primary); scale: 1.1; cursor: pointer; }
.csp-style-0147 { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border-glass); margin-bottom: 1.5rem; }
.csp-style-0148 { font-size: 0.85rem; font-weight: 700; color: var(--primary-light); text-transform: uppercase; margin-top: 0; margin-bottom: 0.75rem; }
.csp-style-0149 { display: flex; flex-direction: column; gap: 1rem; }
.csp-style-0150 { font-size: 0.8rem; }
.csp-style-0151 { font-size: 0.85rem; }
.csp-style-0152 { font-size: 0.75rem; color: var(--danger); }
.csp-style-0153 { background: linear-gradient(135deg, hsl(339, 90%, 50%), hsl(339, 90%, 40%)); box-shadow: 0 0 15px rgba(236, 72, 153, 0.25); }
.csp-style-0154 { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(10px); z-index: 1000; display: flex; align-items: flex-start; justify-content: center; padding: 2rem 1rem; overflow-y: auto; }
.csp-style-0155 { width: 100%; max-width: 580px; box-shadow: var(--shadow-premium); border: 1px solid var(--border-glass); margin: auto 0; }
.csp-style-0156 { display: flex; justify-content: space-between; align-items: center; }
.csp-style-0157 { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.5rem; }
.csp-style-0158 { display: flex; align-items: center; gap: 0.5rem; margin-top: 1rem; margin-bottom: 1.5rem; }
.csp-style-0159 { scale: 1.25; cursor: pointer; accent-color: var(--primary); }
.csp-style-0160 { font-size: 0.85rem; color: var(--text-secondary); cursor: pointer; font-weight: 600; margin-bottom: 0; }
.csp-style-0161 { display: flex; gap: 1rem; justify-content: flex-end; margin-top: 1rem; }
.csp-style-0162 { display: flex; min-height: 100vh; justify-content: center; width: 100vw; background: var(--bg-base); padding: 2rem 1rem; position: fixed; inset: 0; z-index: 5000; overflow-y: auto; }
.csp-style-0163 { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: var(--primary); filter: blur(120px); opacity: 0.15; top: 15%; left: 20%; pointer-events: none; }
.csp-style-0164 { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: var(--accent); filter: blur(120px); opacity: 0.12; bottom: 15%; right: 20%; pointer-events: none; }
.csp-style-0165 { width: 100%; max-width: 460px; z-index: 10; margin: auto 0; padding: 1rem 0; }
.csp-style-0166 { text-align: center; margin-bottom: 0.5rem; img { display: inline-block } }
.csp-style-0167 { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 0 20px var(--primary-glow); margin-bottom: 1rem; }
.csp-style-0168 { width: 26px; height: 26px; color: var(--text-primary); }
.csp-style-0169 { font-size: 1.85rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.5px; margin-bottom: 0.25rem; }
.csp-style-0170 { font-size: 0.85rem; color: var(--text-secondary); }
.csp-style-0171 { margin-bottom: 1.5rem; display: flex; align-items: center; padding: 0.75rem 1rem; border-radius: 12px; font-size: 0.85rem; }
.csp-style-0172 { width: 18px; height: 18px; margin-right: 8px; shrink: 0; }
.csp-style-0173 { font-weight: 500; color: var(--text-primary); }
.csp-style-0174 { background: none; border: none; color: inherit; cursor: pointer; font-size: 1.2rem; margin-left: auto; padding-left: 0.5rem; }
.csp-style-0175 { backdrop-filter: blur(25px); background: var(--bg-card); border: 1px solid var(--border-glass); box-shadow: var(--shadow-premium); margin-bottom: 1.5rem; }
.csp-style-0176 { border-bottom: 1px solid var(--border-glass); padding-bottom: 1rem; margin-bottom: 1.5rem; }
.csp-style-0177 { font-size: 1.15rem; font-weight: 700; color: var(--text-primary); }
.csp-style-0178 { margin-bottom: 1.25rem; }
.csp-style-0179 { font-size: 0.9rem; }
.csp-style-0180 { font-size: 0.75rem; color: var(--danger); margin-top: 0.25rem; display: block; }
.csp-style-0181 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.35rem; }
.csp-style-0182 { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; margin-bottom: 0; }
.csp-style-0183 { background: none; border: none; color: var(--primary-light); font-size: 0.8rem; font-weight: 600; cursor: pointer; padding: 0; }
.csp-style-0184 { width: 100%; display: flex; align-items: center; justify-content: center; height: 44px; font-weight: 600; font-size: 0.9rem; margin-top: 1.75rem; }
.csp-style-0185 { text-align: center; margin-bottom: 1.5rem; }
.csp-style-0186 { background: none; border: none; color: var(--primary-light); font-size: 0.85rem; font-weight: 600; cursor: pointer; }
.csp-style-0187 { border-bottom: 1px solid var(--border-glass); padding-bottom: 1rem; margin-bottom: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.csp-style-0188 { background: none; border: none; color: var(--text-muted); font-size: 0.8rem; font-weight: 600; cursor: pointer; }
.csp-style-0189 { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; display: block; margin-bottom: 0.5rem; }
.csp-style-0190 { display: flex; gap: 0.5rem; background: rgba(255,255,255,0.03); padding: 0.25rem; border-radius: 8px; border: 1px solid var(--border-glass); }
.csp-style-0191 { display: grid; grid-template-columns: 1fr 1.1fr; gap: 0.75rem; margin-bottom: 1.25rem; }
.csp-style-0192 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.25rem; }
.csp-style-0193 { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border-glass); margin-bottom: 1rem; }
.csp-style-0194 { font-size: 0.75rem; font-weight: 700; color: var(--primary-light); text-transform: uppercase; margin-bottom: 0.75rem; letter-spacing: 0.5px; }
.csp-style-0195 { display: flex; flex-direction: column; gap: 0.75rem; }
.csp-style-0196 { font-size: 0.8rem; height: 32px; padding: 0 0.5rem; }
.csp-style-0197 { font-size: 0.7rem; color: var(--danger); display: block; }
.csp-style-0198 { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border-glass); }
.csp-style-0199 { font-size: 0.75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; margin-bottom: 0.75rem; letter-spacing: 0.5px; }
.csp-style-0200 { margin-bottom: 0.75rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.csp-style-0201 { margin-top: 0.2rem; scale: 1.1; cursor: pointer; accent-color: var(--primary); }
.csp-style-0202 { font-size: 0.8rem; color: var(--text-primary); cursor: pointer; line-height: 1.4; font-weight: 500; }
.csp-style-0203 { font-size: 0.75rem; color: var(--danger); display: block; margin-bottom: 0.75rem; margin-left: 1.5rem; }
.csp-style-0204 { width: 100%; display: flex; align-items: center; justify-content: center; height: 44px; font-weight: 600; font-size: 0.9rem; }
.csp-style-0205 { text-align: center; margin-top: 1.5rem; }
.csp-style-0206 { background: none; border: none; color: var(--text-muted); font-size: 0.85rem; font-weight: 600; cursor: pointer; }
.csp-style-0207 { font-size: 0.9rem; opacity: 0.7; background: rgba(255,255,255,0.03); }
.csp-style-0208 { font-size: 0.9rem; font-weight: bold; letter-spacing: 1px; }
.csp-style-0209 { margin-bottom: 1.75rem; }
.csp-style-0210 { backdrop-filter: blur(20px); background: var(--bg-panel); border: 1px solid var(--border-glass); }
.csp-style-0211 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--primary-light); margin-bottom: 1rem; text-align: center; }
.csp-style-0212 { display: flex; flex-direction: column; gap: 0.5rem; }
.csp-style-0213 { background: rgba(255,255,255,0.02); text-align: left; width: 100%; font-size: 0.8rem; min-height: auto; padding: 0.6rem 1rem; display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--border-glass); border-radius: 8px; color: var(--text-primary); cursor: pointer; }
.csp-style-0214 { border-color: var(--primary-light); }
.csp-style-0215 { width: 18px; height: 18px; }
.csp-style-0216 { background: rgba(245, 158, 11, 0.12); color: var(--warning); border: 1px solid rgba(245, 158, 11, 0.2); }
.csp-style-0217 { width: 32px; height: 32px; }
.csp-style-0218 { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
.csp-style-0219 { display: flex; align-items: center; justify-content: space-between; }
.csp-style-0220 { font-weight: 600; font-size: 0.95rem; }
.csp-style-0221 { margin-top: 0.25rem; }
.csp-style-0222 { margin-left: auto; color: #8e8e8e; font-size: 1.15rem; font-weight: bold; cursor: pointer; padding: 0.2rem; }
.csp-style-0223 { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; color: #8e8e8e; }
.csp-style-0224 { width: 44px; height: 44px; }
.csp-style-0225 { margin-left: auto; }
.csp-style-0226 { text-align: center; padding: 4rem 2rem; color: var(--text-secondary); }
.csp-style-0227 { width: 48px; height: 48px; margin-bottom: 1rem; color: var(--text-muted); }
.csp-style-0228 { font-size: 0.85rem; margin-top: 0.25rem; }
.csp-style-0229 { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 0.5px; }
.csp-style-0230 { padding: 0.55rem 0.85rem; font-size: 0.85rem; }
.csp-style-0231 { padding: 0.55rem 0.85rem; font-size: 0.85rem; height: auto; }
.csp-style-0232 { background: rgba(255,255,255,0.05); display:flex; align-items:center; justify-content:center; }
.csp-style-0233 { width: 20px; height: 20px; color: var(--text-muted); }
.csp-style-0234 { color: var(--text-primary); font-size: 0.95rem; }
.csp-style-0235 { font-size: 0.8rem; color: var(--text-secondary); margin-top: 0.15rem; }
.csp-style-0236 { display: inline-flex; gap: 0.5rem; justify-content: flex-end; }
.csp-style-0237 { display: flex; align-items: center; justify-content: space-between; padding-top: 1.5rem; margin-top: 1.5rem; border-top: 1px solid var(--border-glass); flex-wrap: wrap; gap: 1rem; }
.csp-style-0238 { display: inline-flex; gap: 0.35rem; align-items: center; }
.csp-style-0239 { padding: 0.45rem 0.85rem; font-size: 0.85rem; }
.csp-style-0240 { padding: 0.45rem 0.85rem; font-size: 0.85rem; min-width: 35px; height: auto; border: 1px solid var(--border-glass); }
.csp-style-0241 { color: var(--text-muted); padding: 0 0.25rem; }
.csp-style-0242 { margin-bottom: 1.5rem; background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(219, 39, 119, 0.05)); border: 1px solid rgba(124, 58, 237, 0.2); }
.csp-style-0243 { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.csp-style-0244 { font-weight: 600; color: var(--text-primary); font-size: 0.95rem; display: flex; align-items: center; gap: 0.5rem; }
.csp-style-0245 { width: 20px; height: 20px; margin: 0; display: inline-block; vertical-align: middle; }
.csp-style-0246 { width: 14px; height: 14px; border-width: 2px; }
.csp-style-0247 { font-size: 0.85rem; font-weight: 700; color: var(--primary-light); }
.csp-style-0248 { width: 100%; height: 8px; background: rgba(255,255,255,0.05); border-radius: 999px; overflow: hidden; border: 1px solid var(--border-glass); }
.csp-style-0249 { margin-bottom: 1.5rem; padding: 2rem; }
.csp-style-0250 { box-shadow: var(--shadow-premium); }
.csp-style-0251 { background: rgba(59, 130, 246, 0.12); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.2); }
.csp-style-0252 { width: 22px; height: 22px; }
.csp-style-0253 { background: rgba(219, 39, 119, 0.12); color: var(--accent); border: 1px solid rgba(219, 39, 119, 0.2); }
.csp-style-0254 { background: rgba(255, 255, 255, 0.1); color: var(--text-primary); border: 1px solid rgba(255, 255, 255, 0.2); }
.csp-style-0255 { padding: 1.5rem; margin-bottom: 1.5rem; }
.csp-style-0256 { margin-top: 0.35rem; display: flex; gap: 0.35rem; align-items: center; flex-wrap: wrap; }
.csp-style-0257 { font-size: 0.65rem; padding: 0.15rem 0.45rem; }
.csp-style-0258 { color: var(--text-primary); font-size: 0.85rem; line-height: 1.4; }
.csp-style-0259 { display: flex; gap: 0.5rem; margin-top: 0.25rem; font-size: 0.75rem; }
.csp-style-0260 { color: var(--text-secondary); }
.csp-style-0261 { color: var(--text-muted); }
.csp-style-0262 { font-family: monospace; font-size: 0.85rem; color: var(--text-secondary); }
.csp-style-0263 { display: flex; gap: 0.5rem; align-items: center; }
.csp-style-0264 { margin-bottom: 1.5rem; border-bottom: 1px solid var(--border-glass); padding-bottom: 0.75rem; }
.csp-style-0265 { background: none; border: none; color: var(--text-secondary); cursor: pointer; font-size: 1.5rem; }
.csp-style-0266 { margin-bottom: 0.75rem; display: flex; align-items: center; justify-content: space-between; background: rgba(220, 38, 38, 0.05); padding: 0.75rem 1rem; border-radius: 10px; border: 1px solid rgba(220, 38, 38, 0.15); margin-top: 0.25rem; }
.csp-style-0267 { display: flex; flex-direction: column; gap: 0.15rem; }
.csp-style-0268 { margin-bottom: 0; font-weight: 600; font-size: 0.9rem; text-transform: none; color: var(--text-primary); }
.csp-style-0269 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.csp-style-0270 { font-size:0.8rem; padding:0.5rem; }
.csp-style-0271 { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border-glass); }
.csp-style-0272 { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.csp-style-0273 { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.25); font-size: 0.75rem; margin-bottom: 0; }
.csp-style-0274 { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.csp-style-0275 { display: flex; flex-direction: column; gap: 2rem; }
.csp-style-0276 { background: rgba(0,0,0,0.15); padding: 1.25rem; border-radius: 12px; border: 1px solid var(--border-glass); }
.csp-style-0277 { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 0.5rem; }
.csp-style-0278 { font-weight: 700; color: var(--text-primary); font-size: 0.95rem; }
.csp-style-0279 { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); }
.csp-style-0280 { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; padding-top: 1rem; }
.csp-style-0281 { color: var(--success); font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.25rem; animation: pulse-opacity 1.5s infinite; }
.csp-style-0282 { width: 16px; height: 16px; }
.csp-style-0283 { padding: 0.8rem 2.5rem; }
.csp-style-0284 { color: var(--primary-light); }
.csp-style-0285 { width: 32px; height: 32px; margin: 0 auto 0.75rem; }
.csp-style-0286 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.csp-style-0287 { margin: 0; }
.csp-style-0288 { font-size: 0.8rem; font-weight: 600; color: var(--primary-light); }
.csp-style-0289 { padding: 0; height: 6px; background: rgba(255,255,255,0.1); border: none; outline: none; border-radius: 3px; cursor: pointer; }
.csp-style-0290 { margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.02); padding: 0.75rem 1rem; border-radius: 12px; border: 1px solid var(--border-glass); }
.csp-style-0291 { font-weight: 600; color: var(--text-primary); display: block; font-size: 0.9rem; }
.csp-style-0292 { margin-top: 1.5rem; }
.csp-style-0293 { display: flex; justify-content: space-between; font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.5rem; }
.csp-style-0294 { text-align: center; line-height: 2.2rem; text-shadow: none; }
.csp-style-0295 { margin-top: 1rem; padding: 0.75rem; background: rgba(147, 197, 253, 0.05); border: 1px solid rgba(147, 197, 253, 0.1); border-radius: 8px; font-size: 0.75rem; color: var(--primary-light); }
.csp-style-0296 { font-size: 0.75rem; }
.csp-style-0297 { position: absolute; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem; color: var(--text-secondary); }
.csp-style-0298 { font-size: 0.8rem; max-width: 320px; }
.csp-style-0299 { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }
.csp-style-0300 { padding: 0.5rem 1rem; font-size: 0.85rem; }
.csp-style-0301 { font-size: 0.8rem; color: var(--text-secondary); }
.csp-style-0302 { color: var(--success); font-weight: 600; display: inline-flex; align-items: center; gap: 0.25rem; }
.csp-style-0303 { width: 8px; height: 8px; border-radius: 50%; background: var(--success); display: inline-block; animation: blink 1s infinite alternate; }
.csp-style-0304 { color: var(--warning); font-weight: 600; }
.csp-style-0305 { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1rem; align-self: flex-start; padding: 0; }
.csp-style-0306 { background: none; border: none; color: inherit; cursor: pointer; font-size: 1.2rem; margin-left: auto; }
.csp-style-0307 { color: var(--success); border-color: rgba(16, 185, 129, 0.2); margin-right: 0.25rem; }
.csp-style-0308 { color: var(--primary-light); text-decoration: none; font-size: 0.7rem; background: rgba(255,255,255,0.03); padding: 0.1rem 0.35rem; border-radius: 4px; border: 1px solid var(--border-glass); }
.csp-style-0309 { color: var(--primary-light); margin-left: 0.5rem; text-decoration: none; font-size: 0.75rem; font-weight: 600; }
.csp-style-0310 { padding: 0.5rem 1rem; font-size: 0.85rem; min-height: auto; }
.csp-style-0311 { padding: 0.5rem 1rem; font-size: 0.85rem; min-height: auto; border-color: var(--danger); color: var(--danger); }
.csp-style-0312 { color: var(--primary-light); text-decoration: none; font-size: 0.75rem; background: rgba(255,255,255,0.03); padding: 0.2rem 0.5rem; border-radius: 4px; border: 1px solid var(--border-glass); }
.csp-style-0313 { padding: 0.5rem 1rem; font-size: 0.85rem; shrink: 0; min-height: auto; }
.csp-style-0314 { padding: 0.4rem 0.6rem; font-size: 0.8rem; }
.csp-style-0315 { padding: 0.4rem 0.6rem; font-size: 0.8rem; border-color: var(--border-glass); }


/* CSP strict style replacements */
.notification-trigger:hover { border-color: var(--primary-light); }
.notification-delete-button:hover { color: var(--danger); }
.notification-item { padding: 0.75rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; gap: 0.5rem; background: transparent; }
.notification-item-unread { background: var(--primary-glow); }
.calendar-day-cell { background: rgba(255,255,255,0.02); border: 1px solid var(--border-glass); border-radius: 8px; min-height: 70px; padding: 0.4rem; cursor: pointer; transition: all 0.2s ease; position: relative; text-align: left; display: flex; flex-direction: column; justify-content: space-between; }
.calendar-day-cell:hover { border-color: var(--primary-light); }
.calendar-day-cell-selected { background: var(--primary-glow); border-color: var(--primary-light); }
.calendar-day-cell-today { background: rgba(236, 72, 153, 0.05); border-color: var(--accent); }
.calendar-day-number { font-weight: 600; font-size: 0.85rem; color: var(--text-primary); }
.calendar-day-number-today { font-weight: 700; color: var(--accent); }
.register-type-option { flex: 1; height: 34px; border: none; border-radius: 6px; cursor: pointer; font-size: 0.8rem; font-weight: 600; transition: all 0.2s; background: transparent; color: var(--text-secondary); }
.register-type-option-active { background: var(--primary); color: #fff; }
.ai-socials-progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); transition: width 0.4s ease; }
.progress-width-0 { width: 0%; }
.progress-width-1 { width: 1%; }
.progress-width-2 { width: 2%; }
.progress-width-3 { width: 3%; }
.progress-width-4 { width: 4%; }
.progress-width-5 { width: 5%; }
.progress-width-6 { width: 6%; }
.progress-width-7 { width: 7%; }
.progress-width-8 { width: 8%; }
.progress-width-9 { width: 9%; }
.progress-width-10 { width: 10%; }
.progress-width-11 { width: 11%; }
.progress-width-12 { width: 12%; }
.progress-width-13 { width: 13%; }
.progress-width-14 { width: 14%; }
.progress-width-15 { width: 15%; }
.progress-width-16 { width: 16%; }
.progress-width-17 { width: 17%; }
.progress-width-18 { width: 18%; }
.progress-width-19 { width: 19%; }
.progress-width-20 { width: 20%; }
.progress-width-21 { width: 21%; }
.progress-width-22 { width: 22%; }
.progress-width-23 { width: 23%; }
.progress-width-24 { width: 24%; }
.progress-width-25 { width: 25%; }
.progress-width-26 { width: 26%; }
.progress-width-27 { width: 27%; }
.progress-width-28 { width: 28%; }
.progress-width-29 { width: 29%; }
.progress-width-30 { width: 30%; }
.progress-width-31 { width: 31%; }
.progress-width-32 { width: 32%; }
.progress-width-33 { width: 33%; }
.progress-width-34 { width: 34%; }
.progress-width-35 { width: 35%; }
.progress-width-36 { width: 36%; }
.progress-width-37 { width: 37%; }
.progress-width-38 { width: 38%; }
.progress-width-39 { width: 39%; }
.progress-width-40 { width: 40%; }
.progress-width-41 { width: 41%; }
.progress-width-42 { width: 42%; }
.progress-width-43 { width: 43%; }
.progress-width-44 { width: 44%; }
.progress-width-45 { width: 45%; }
.progress-width-46 { width: 46%; }
.progress-width-47 { width: 47%; }
.progress-width-48 { width: 48%; }
.progress-width-49 { width: 49%; }
.progress-width-50 { width: 50%; }
.progress-width-51 { width: 51%; }
.progress-width-52 { width: 52%; }
.progress-width-53 { width: 53%; }
.progress-width-54 { width: 54%; }
.progress-width-55 { width: 55%; }
.progress-width-56 { width: 56%; }
.progress-width-57 { width: 57%; }
.progress-width-58 { width: 58%; }
.progress-width-59 { width: 59%; }
.progress-width-60 { width: 60%; }
.progress-width-61 { width: 61%; }
.progress-width-62 { width: 62%; }
.progress-width-63 { width: 63%; }
.progress-width-64 { width: 64%; }
.progress-width-65 { width: 65%; }
.progress-width-66 { width: 66%; }
.progress-width-67 { width: 67%; }
.progress-width-68 { width: 68%; }
.progress-width-69 { width: 69%; }
.progress-width-70 { width: 70%; }
.progress-width-71 { width: 71%; }
.progress-width-72 { width: 72%; }
.progress-width-73 { width: 73%; }
.progress-width-74 { width: 74%; }
.progress-width-75 { width: 75%; }
.progress-width-76 { width: 76%; }
.progress-width-77 { width: 77%; }
.progress-width-78 { width: 78%; }
.progress-width-79 { width: 79%; }
.progress-width-80 { width: 80%; }
.progress-width-81 { width: 81%; }
.progress-width-82 { width: 82%; }
.progress-width-83 { width: 83%; }
.progress-width-84 { width: 84%; }
.progress-width-85 { width: 85%; }
.progress-width-86 { width: 86%; }
.progress-width-87 { width: 87%; }
.progress-width-88 { width: 88%; }
.progress-width-89 { width: 89%; }
.progress-width-90 { width: 90%; }
.progress-width-91 { width: 91%; }
.progress-width-92 { width: 92%; }
.progress-width-93 { width: 93%; }
.progress-width-94 { width: 94%; }
.progress-width-95 { width: 95%; }
.progress-width-96 { width: 96%; }
.progress-width-97 { width: 97%; }
.progress-width-98 { width: 98%; }
.progress-width-99 { width: 99%; }
.progress-width-100 { width: 100%; }
.turnstile-field { display: flex; justify-content: center; margin: 1rem 0; min-height: 65px; }
.turnstile-error { color: var(--danger); display: block; font-size: 0.75rem; margin: -0.25rem 0 1rem; text-align: center; }

/* Custom Logo Integrations */
.login-logo-img { display: inline-block; vertical-align: middle; width: 190px; height: 190px; }
.sidebar-brand-logo { display: flex; align-items: center; justify-content: flex-start; margin: 0 auto; }

/* Stacked Form Button */
.csp-style-0055-stacked { width: 100%; height: 38px; font-size: 0.85rem; font-weight: 600; margin-top: 0.5rem; }

/* Speaker Details Header & Edit Button */
.edit-info-header { display: flex; justify-content: space-between; align-items: center; }
.edit-info-btn { font-size: 0.75rem; padding: 0.25rem 0.5rem; height: 28px; min-height: auto; display: inline-flex; align-items: center; gap: 0.25rem; cursor: pointer; }

/* Import Calendar Panel spacing */
.import-calendar-panel { margin-top: 1.5rem; }

/* Auth tabs styling for login/register toggling */
.auth-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-glass);
    margin-top: -2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    margin-bottom: 1.75rem;
    background: rgba(255, 255, 255, 0.015);
    border-top-left-radius: 19px;
    border-top-right-radius: 19px;
    overflow: hidden;
}
.auth-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 1.1rem 0.5rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.auth-tab:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}
.auth-tab.active {
    color: var(--primary-light);
    border-bottom-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 576px) {
    .auth-tabs {
        margin-top: -1.25rem;
        margin-left: -1.25rem;
        margin-right: -1.25rem;
    }
}

/* Speaker Profile Picture & Visibility Styles for CSP compliance */
.speaker-visibility-group {
    margin-top: 1.5rem;
}
.speaker-visibility-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(5, 107, 79, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border: 1px dashed rgba(5, 107, 79, 0.2);
}
.speaker-visibility-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #056b4f;
    margin-top: 2px;
}
.speaker-visibility-label {
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: block;
    margin-bottom: 0.25rem;
}
.speaker-visibility-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
    display: block;
}
.profile-picture-group {
    margin-top: 1.25rem;
}
.profile-picture-preview-container {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.profile-picture-preview-img-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
}
.profile-picture-preview-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
}
.profile-picture-loading {
    font-size: 0.75rem;
    color: var(--primary-light);
    margin-top: 0.25rem;
}
.user-avatar-flex {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.user-avatar-img-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--primary-light);
}
.user-avatar-initials-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #056b4f;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
    border: 1px solid var(--primary-light);
}
.user-avatar-img-medium {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
}
.user-avatar-initials-medium {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #056b4f;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid var(--primary-light);
}
.finder-speaker-name-span {
    margin-left: 0.25rem;
}
