/* index.html's css */

:root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --success-color: #27ae60;
            --warning-color: #f39c12;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 10px;
        }
        
        .logo h1 {
            font-size: 1.5rem;
        }
        
        .user-info {
            display: flex;
            align-items: center;
            text-align: right;
        }
        
        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: white;
            font-weight: bold;
        }
        
        .user-details {
            display: flex;
            flex-direction: column;
        }
        
        .user-name {
            font-weight: bold;
            font-size: 1rem;
        }
        
        .user-role {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Navigation Styles */
        nav {
            background-color: var(--secondary-color);
            padding: 0.5rem 0;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            position: relative;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            display: block;
            transition: background-color 0.3s;
        }
        
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.1);
        }

        .nav-links a.external-link {
            background-color: var(--accent-color);
            border-radius: 4px;
            margin-left: 5px;
        }

        .nav-links a.external-link:hover {
            background-color: #c0392b;
        }
        
        .dropdown {
            position: relative;
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            z-index: 1;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .dropdown-content a {
            color: var(--dark-color);
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }
        
        .dropdown-content a:hover {
            background-color: var(--light-color);
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
        }
        
        .btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #c0392b;
        }

        .btn-secondary {
            background-color: var(--secondary-color);
        }

        .btn-secondary:hover {
            background-color: #2980b9;
        }

        .btn-success {
            background-color: var(--success-color);
        }

        .btn-success:hover {
            background-color: #219652;
        }

        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--secondary-color);
            color: var(--secondary-color);
        }

        .btn-outline:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        /* Main Content Styles */
        main {
            padding: 2rem 0;
            min-height: calc(100vh - 200px);
        }
        
        .dashboard {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 20px;
            margin-bottom: 2rem;
        }
        
        .card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1.5rem;
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .card h3 {
            margin-bottom: 1rem;
            color: var(--primary-color);
            border-bottom: 2px solid var(--light-color);
            padding-bottom: 0.5rem;
        }
        
        .card ul {
            list-style: none;
            flex-grow: 1;
        }
        
        .card li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--light-color);
        }
        
        .card li:last-child {
            border-bottom: none;
        }
        
        .card a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .card a:hover {
            text-decoration: underline;
        }

        .welcome-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1.5rem;
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
        }
        
        .welcome-card:hover {
            transform: translateY(-5px);
        }
        
        .welcome-card h3 {
            margin-bottom: 1rem;
            color: var(--primary-color);
            border-bottom: 2px solid var(--light-color);
            padding-bottom: 0.5rem;
        }
        
        .welcome-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .welcome-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #555;
        }

        .admin-panel {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1.5rem;
            margin-top: 2rem;
            display: none;
        }

        .admin-panel h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--light-color);
            padding-bottom: 0.5rem;
        }

        .admin-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        /* Form Modal Styles */
        .form-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }

        .form-content {
            background-color: white;
            margin: 2% auto;
            padding: 1.5rem;
            border-radius: 8px;
            width: 90%;
            max-width: 800px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
        }

        .form-header {
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .form-header h2 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 1rem;
        }

        .form-group {
            flex: 1 1 calc(50% - 15px);
            margin-bottom: 0.75rem;
        }

        .form-group-full {
            flex: 1 1 100%;
            margin-bottom: 0.75rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.25rem;
            font-weight: bold;
            color: var(--dark-color);
            font-size: 0.9rem;
        }

        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 0.5rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 0.9rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: var(--secondary-color);
            outline: none;
        }

        .form-group textarea {
            min-height: 80px;
            resize: vertical;
        }

        .form-actions {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            margin-top: 1.5rem;
        }

        .required::after {
            content: " *";
            color: var(--accent-color);
        }

        .child-entry {
            border: 1px solid #ddd;
            padding: 1rem;
            margin-bottom: 1rem;
            border-radius: 4px;
            background-color: #f9f9f9;
        }

        .child-entry h4 {
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }

        .add-child-btn {
            background-color: var(--success-color);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            margin-bottom: 1rem;
        }

        .remove-child-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.8rem;
        }

        .checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .checkbox-item input[type="checkbox"] {
            width: auto;
        }

        /* Password Toggle Styles */
        .password-container {
            position: relative;
        }
        
        .toggle-password {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #666;
            font-size: 0.9rem;
        }
        
        .toggle-password:hover {
            color: #333;
        }

        /* Map Modal Styles */
        .map-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }

        .map-modal-content {
            background-color: white;
            margin: 2% auto;
            padding: 1.5rem;
            border-radius: 8px;
            width: 90%;
            max-width: 1000px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
        }

        .map-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .map-modal-header h2 {
            color: var(--primary-color);
        }

        .map-modal-actions {
            display: flex;
            gap: 10px;
        }

        #modalCongregationMap {
            height: 500px;
            border-radius: 8px;
            width: 100%;
        }

        .map-info {
            margin-top: 1rem;
            background-color: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        /* Login Modal Styles */
        .modal {
            display: block;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }
        
        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 2rem;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .close {
            position: absolute;
            right: 1rem;
            top: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: #aaa;
        }
        
        .close:hover {
            color: var(--dark-color);
        }

        .registration-link {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }

        .registration-link a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: bold;
        }

        .registration-link a:hover {
            text-decoration: underline;
        }

        .forgot-password-link {
            text-align: center;
            margin-top: 1rem;
        }

        .forgot-password-link a {
            color: var(--secondary-color);
            text-decoration: none;
            font-size: 0.9rem;
        }

        .forgot-password-link a:hover {
            text-decoration: underline;
        }

        .login-attempts {
            font-size: 0.8rem;
            color: var(--accent-color);
            margin-top: 0.5rem;
            text-align: center;
        }

        /* Facial Recognition Styles */
        .facial-recognition-modal {
            display: none;
            position: fixed;
            z-index: 3000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
        }

        .facial-recognition-content {
            background-color: white;
            margin: 5% auto;
            padding: 2rem;
            border-radius: 8px;
            width: 90%;
            max-width: 600px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            position: relative;
            text-align: center;
        }

        .camera-container {
            width: 100%;
            margin: 1rem 0;
            text-align: center;
        }

        #videoElement, #registrationVideoElement {
            width: 100%;
            max-width: 500px;
            border-radius: 8px;
            background-color: #000;
        }

        .capture-btn {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            margin-top: 1rem;
            transition: background-color 0.3s;
        }

        .capture-btn:hover {
            background-color: #2980b9;
        }

        .recognition-status {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 4px;
            font-weight: bold;
        }

        .recognition-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .recognition-error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        /* Footer Styles */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 1.5rem 0;
            text-align: center;
        }

        /* Password Requirements */
        .password-requirements {
            font-size: 0.8rem;
            color: #666;
            margin-top: 0.25rem;
        }

        /* Pending Registrations Modal */
        .pending-registrations-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }

        .pending-registrations-content {
            background-color: white;
            margin: 2% auto;
            padding: 1.5rem;
            border-radius: 8px;
            width: 90%;
            max-width: 1000px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
        }

        .registration-item {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
            background-color: #f9f9f9;
        }

        .registration-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .registration-actions {
            display: flex;
            gap: 10px;
        }

        .registration-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
        }

        .detail-item {
            margin-bottom: 0.5rem;
        }

        .detail-label {
            font-weight: bold;
            color: var(--primary-color);
        }

        /* Vision Form Specific Styles */
        .text-use-row {
            display: flex;
            gap: 10px;
            align-items: flex-end;
        }
        
        .text-use-group {
            flex: 1;
        }
        
        .text-use-group.small {
            flex: 0 0 80px;
        }
        
        .text-use-group.small input {
            width: 100%;
        }
        
        .checkbox-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .checkbox-label {
            display: flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
        }

        /* Vision Seen During Checkbox Layout */
        .vision-during-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .vision-during-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: space-between;
        }
        
        .vision-during-row .checkbox-label {
            flex: 0 0 calc(33.333% - 10px);
            margin-bottom: 10px;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-container, .nav-container {
                flex-direction: column;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                margin-top: 1rem;
            }
            
            .user-info {
                margin-top: 1rem;
            }
            
            .dashboard {
                grid-template-columns: 1fr;
            }

            .nav-links a.external-link {
                margin-left: 0;
                margin-top: 5px;
            }

            .form-actions {
                flex-direction: column;
            }

            .modal-content {
                margin: 10% auto;
                padding: 1.5rem;
            }

            .form-content {
                margin: 5% auto;
                padding: 1rem;
            }

            .form-group {
                flex: 1 1 100%;
            }

            .map-modal-content {
                margin: 5% auto;
                padding: 1rem;
            }

            .facial-recognition-content {
                margin: 10% auto;
                padding: 1.5rem;
            }

            .pending-registrations-content {
                margin: 5% auto;
                padding: 1rem;
            }

            .registration-actions {
                flex-direction: column;
            }
            
            .text-use-row {
                flex-direction: column;
            }
            
            .text-use-group.small {
                flex: 1;
            }
            
            .checkbox-row {
                flex-direction: column;
                gap: 10px;
            }
            
            .vision-during-row {
                flex-direction: column;
                gap: 10px;
            }
            
            .vision-during-row .checkbox-label {
                flex: 1 1 100%;
            }
        }

        /* Toast container */
#toastContainer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Toast bubble */
.toast {
    padding: 12px 18px;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    min-width: 220px;
    opacity: 0;
    transform: translateX(50px);
    animation: toastSlideIn 0.35s forwards;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    pointer-events: auto;
}

/* Toast types */
.toast-success { background: #27ae60; }
.toast-error { background: #c0392b; }
.toast-warning { background: #f39c12; color: black; }
.toast-info { background: #2980b9; }

/* Slide in animation */
@keyframes toastSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide out animation */
@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(50px);
    }
}

/* ================================
   ACTIVITY CALENDAR MODAL
================================ */
#activityCalendarModal .modal-content {
    max-width: 900px;
    width: 95%;
    padding: 20px;
    border-radius: 10px;
}

#activityCalendarTitle {
    margin-top: 0;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
}

/* Close button */
#closeActivityCalendarModal {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

/* ================================
   MONTH SELECTOR
================================ */
.calendar-controls {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

#activityMonthSelect {
    padding: 6px 12px;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: #fff;
}

/* ================================
   CALENDAR GRID LAYOUT
================================ */
.calendar-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Rows */
.calendar-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

/* Cells */
.calendar-cell {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 8px;
    min-height: 110px;
    background: #f8fafc;
    position: relative;
    transition: background 0.2s ease-in-out;
}

.calendar-cell:hover {
    background: #eef2ff;
}

.calendar-cell.empty {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

/* Header row */
.calendar-header-cell {
    background: #1e293b;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    border-radius: 8px;
}

/* Day number */
.calendar-day-number {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #0f172a;
}

/* ------------------------------
   ACTIVITY BADGES
-------------------------------- */
.calendar-activities {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calendar-activity {
    background: #e0e7ff;
    border-left: 4px solid #6366f1;
    padding: 6px 8px;
    font-size: 0.85rem;
    border-radius: 5px;
}

.calendar-activity strong {
    display: block;
    font-size: 0.9rem;
    color: #1e1b4b;
}

.calendar-activity .time {
    font-size: 0.8rem;
    color: #334155;
}

.calendar-activity .location {
    font-size: 0.75rem;
    color: #475569;
}

/* ================================
   WEEK VIEW
================================ */
.calendar-header {
    margin-bottom: 10px;
}

.calendar-row .calendar-cell {
    min-height: 140px;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 768px) {
    .calendar-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .calendar-header {
        grid-template-columns: repeat(2, 1fr);
    }

    .calendar-day-number {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .calendar-row {
        grid-template-columns: repeat(1, 1fr);
    }

    #activityCalendarTitle {
        font-size: 1.4rem;
    }

    .calendar-cell {
        min-height: auto;
    }
}
/* Sing Emmanuel Modal */
#singEmmanuelModal .modal-content {
    background: #000;
    border-radius: 12px;
}

/* Make iframe responsive & fill modal */
.embed-container {
    width: 100%;
    height: 100%;
}

.embed-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.map-modal-content {
    width: 90%;
    height: 85vh;
    max-width: 1100px;
    margin: auto;
    border-radius: 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

#modalCongregationMap {
    height: 60%;
    border-bottom: 1px solid #ddd;
}

.map-info {
    padding: 15px;
    height: 40%;
    overflow-y: auto;
}

.about-container {
    margin-top: 20px;
}

.about-card h2,
.about-card h3 {
    color: #1d3557;
    margin-bottom: 10px;
}

.about-card p,
.about-card ul {
    line-height: 1.6;
}

.about-card ul {
    padding-left: 20px;
}

.about-card ul li {
    margin-bottom: 6px;
}
.about-card {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-container {
    margin-top: 20px;
}

.contact-card h2,
.contact-card h3 {
    color: #1d3557;
    margin-bottom: 10px;
}

.contact-card p {
    line-height: 1.6;
}

.calendar-day.has-tuition {
    background: #2e7d32;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
}
.calendar-day.has-tuition:hover {
    background: #1b5e20;
}
.notification-item {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-left: 4px solid #ccc;
    cursor: pointer;
}

.notification-item.unread {
    background: #f9f9f9;
    font-weight: 600;
}

.notification-item.read {
    opacity: 0.6;
}

.notification-item.success {
    border-left-color: #2e7d32;
}

.notification-item.warning {
    border-left-color: #ed6c02;
}

.notification-item.error {
    border-left-color: #d32f2f;
}

.notification-item.info {
    border-left-color: #0288d1;
}
.notification-item:hover {
    background: #e3f2fd;
}

.notification-bell {
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
}

#notificationBadge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: red;
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    padding: 2px 6px;
}
.notification-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border-radius: 8px;
    z-index: 1000;
}

.bible-header {
    background: #2e7d32;
    color: white;
    padding: 1rem;
}

.bible-container {
    display: flex;
    height: calc(100vh - 64px);
}

.bible-sidebar {
    width: 220px;
    border-right: 1px solid #ddd;
    padding: 1rem;
    overflow-y: auto;
}

.bible-sidebar li {
    cursor: pointer;
    padding: 0.25rem 0;
}

.bible-sidebar li:hover {
    font-weight: bold;
}

.bible-main {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

#chapterBar button {
    margin: 0.25rem;
}

.verse {
    margin-bottom: 0.5rem;
}

.verse-number {
    font-weight: bold;
}