/* Session Guide Modal Styles */
#session-guide-modal .modal-content {
    max-width: 800px;
    width: 95%;
}

.session-guide-container {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
}

.guide-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color, #eee);
    background: linear-gradient(to bottom, transparent 0%, rgba(var(--primary-rgb), 0.05) 100%);
    border-radius: 8px;
    padding: 1.5rem;
}

.session-badge {
    display: inline-block;
    background-color: var(--primary-color, #4361ee);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guide-header .session-title {
    font-size: 1.75rem;
    margin: 0.5rem 0;
    color: var(--text-main);
    font-weight: 700;
}

.bible-passage {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.guide-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guide-section {
    padding: 0 0.5rem;
}

.guide-section.highlight-section {
    background-color: rgba(67, 97, 238, 0.05);
    /* Light primary tint */
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color, #4361ee);
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color, #4361ee);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    font-size: 1.1rem;
    color: var(--primary-light, #7b93ff);
}

.guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-main);
}

.guide-list li::before {
    content: "•";
    color: var(--primary-color, #4361ee);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

.section-text {
    line-height: 1.7;
    color: var(--text-main);
    margin: 0;
}

/* Norms Section */
.norms-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--border-color, #ddd);
}

@media (min-width: 768px) {
    .norms-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.norms-column {
    background-color: var(--surface);
    border: 1px solid var(--border);
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.norms-column.moderator {
    background-color: rgba(255, 165, 0, 0.05);
    border-color: rgba(255, 165, 0, 0.2);
}

.norms-column.obedience {
    background-color: rgba(40, 167, 69, 0.05); /* Green tint */
    border-color: rgba(40, 167, 69, 0.2);
}

.norms-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.5rem;
}

.norms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.norms-list li {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    color: var(--text-main);
    line-height: 1.5;
}

/* Dark mode adjustments if applicable */
@media (prefers-color-scheme: dark) {
    .guide-header {
        background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
    }

    .guide-section.highlight-section {
        background-color: rgba(255, 255, 255, 0.05);
    }

    .norms-column {
        background-color: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .norms-column.moderator {
        background-color: rgba(255, 200, 100, 0.05);
        border-color: rgba(255, 200, 100, 0.1);
    }

    .norms-column.obedience {
        background-color: rgba(100, 255, 130, 0.05);
        border-color: rgba(100, 255, 130, 0.1);
    }
}

/* Passage Text Block */
.passage-text-block {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: var(--surface) !important;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Georgia', serif;
    /* Serif for scripture reading */
    font-size: 1.1rem !important;
    line-height: 1.8;
    color: var(--text-main) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #4361ee;
    white-space: pre-line;
    /* Preserve line breaks */
}

.passage-text-block strong {
    color: #1a1a1a !important;
    font-weight: 700;
    display: inline-block;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}

/* Dark mode for passage text */
.dark-mode .passage-text-block {
    background-color: #2d2d2d !important;
    border-color: #404040;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dark-mode .passage-text-block strong {
    color: #ffffff !important;
}

@media (prefers-color-scheme: dark) {
    body:not(.dark-mode) .passage-text-block {
        background-color: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
        color: #e0e0e0;
    }
}