/**
 * Sunday Studies layout: liquid glass sidebar + improved spacing.
 * Use with .dashboard-container.sunday-studies-dashboard on the wrapper.
 */

/* Soft background so glass panels show through */
.sunday-studies-dashboard {
    min-height: 100vh;
    background: linear-gradient(160deg, #f2f5f9 0%, #e8eef5 50%, #f5f7fa 100%);
}

/* Liquid glass sidebar */
.sunday-studies-dashboard .sidebar {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-right: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 2px 0 24px rgba(0, 0, 0, 0.06), inset 1px 0 0 rgba(255, 255, 255, 0.8);
    padding: 28px 20px;
    margin: 12px 0 12px 12px;
    border-radius: 0 16px 16px 0;
    width: 240px;
}

.sunday-studies-dashboard .sidebar h1 {
    margin-bottom: 12px;
}

.sunday-studies-dashboard .sidebar-logo {
    margin-bottom: 24px;
}

.sunday-studies-dashboard .sidebar hr {
    border: none;
    border-top: 1px solid rgba(0, 60, 109, 0.12);
    margin: 20px 0;
}

.sunday-studies-dashboard .sidebar ul li {
    margin: 14px 0;
}

.sunday-studies-dashboard .sidebar ul li a {
    color: #333;
    padding: 8px 12px;
    border-radius: 10px;
    display: block;
    transition: background 0.2s ease, color 0.2s ease;
}

.sunday-studies-dashboard .sidebar ul li a:hover {
    background: rgba(0, 60, 109, 0.08);
    color: var(--cpc-blue);
}

.sunday-studies-dashboard .sidebar ul li a[href*="mission-study"] {
    background: rgba(0, 60, 109, 0.1);
    color: var(--cpc-blue);
    font-weight: 600;
}

/* Main content: more spacing and optional glass content block */
.sunday-studies-dashboard .main-content {
    padding: 32px 28px 48px;
    margin-left: 268px;
}

/* Header inside the card */
.sunday-studies-dashboard .center-content header {
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
}

.sunday-studies-dashboard .center-content header h1 {
    margin-bottom: 2rem;
}

.sunday-studies-dashboard .center-content header h2 {
    margin-bottom: 8px;
}

.sunday-studies-dashboard .center-content header p {
    font-size: 0.95em;
    color: #555;
    margin-top: 4px;
}

/* Glass-style content block — centered in main area */
.sunday-studies-dashboard .center-content {
    padding: 2.5rem 28px 3rem !important;
    margin: 0 auto;
    max-width: 780px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.sunday-studies-dashboard .center-content hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 6px 0;
}

.sunday-studies-dashboard .center-content p {
    margin-bottom: 1.25rem;
}

.sunday-studies-dashboard .center-content h2 {
    margin-top: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.sunday-studies-dashboard .mission-schedule {
    list-style: decimal;
    padding-left: 1.75rem;
    margin: 1.25rem 0;
}

.sunday-studies-dashboard .mission-schedule li {
    margin-bottom: 1.75rem;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .sunday-studies-dashboard .sidebar {
        width: 100%;
        margin: 0;
        border-radius: 0;
        background: rgba(248, 248, 248, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .sunday-studies-dashboard .main-content {
        margin-left: 0;
        padding: 24px 16px 40px;
    }

    .sunday-studies-dashboard .center-content {
        margin: 0;
        padding: 1.75rem 20px 2.5rem !important;
    }
}
