/* /Components/Layout/Calendar.razor.rz.scp.css */
.calendar-wrapper[b-a4p78dvepp] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

.calendar-header[b-a4p78dvepp] {
    background-color: var(--caci-primary-blue);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calendar-header h3[b-a4p78dvepp] {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-nav[b-a4p78dvepp] {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: transform 0.2s;
}

.btn-nav:hover[b-a4p78dvepp] {
    transform: scale(1.1);
    color: var(--tone-highlight);
}

.calendar-grid[b-a4p78dvepp] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    /* Auto rows */
}

.weekday-header[b-a4p78dvepp] {
    background-color: var(--light-bg);
    padding: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--minister-blue);
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #eee;
}

.calendar-day[b-a4p78dvepp] {
    min-height: 100px;
    padding: 5px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    position: relative;
    background: white;
}

.calendar-day.other-month[b-a4p78dvepp] {
    background-color: #f9f9f9;
    color: #ccc;
}

.calendar-day.today[b-a4p78dvepp] {
    background-color: rgba(164, 189, 221, 0.2);
    /* Tone Highlight transparent */
}

/* Sabbath Highlighting (Friday-Saturday) */
.calendar-day.sabbath[b-a4p78dvepp] {
    background-color: #FFF8DC;
    /* Cornsilk - warm, peaceful color */
    border-left: 3px solid #DAA520;
    /* Goldenrod border */
}

.calendar-day.connection-sabbath[b-a4p78dvepp] {
    background: linear-gradient(135deg, rgba(23, 68, 119, 0.15), rgba(71, 48, 109, 0.15));
    border-left: 3px solid var(--caci-primary-blue);
    border-right: 3px solid var(--bishop-purple);
}

.sabbath-badge[b-a4p78dvepp],
.connection-badge[b-a4p78dvepp] {
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 4px;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
    line-height: 1.1;
    white-space: normal;
    word-break: break-word;
}

.sabbath-badge[b-a4p78dvepp] {
    background-color: #DAA520;
    color: white;
}

.connection-badge[b-a4p78dvepp] {
    background: linear-gradient(90deg, var(--caci-primary-blue), var(--bishop-purple));
    color: white;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: pulse-b-a4p78dvepp 2s ease-in-out infinite;
}

.connection-badge:hover[b-a4p78dvepp] {
    transform: scale(1.02);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-b-a4p78dvepp {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.day-number[b-a4p78dvepp] {
    display: block;
    text-align: right;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.calendar-event[b-a4p78dvepp] {
    font-size: 0.75rem;
    padding: 2px 5px;
    margin-bottom: 2px;
    border-radius: 3px;
    background-color: var(--minister-blue);
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.calendar-event.feast[b-a4p78dvepp] {
    background-color: var(--elder-red);
}

.calendar-event.meeting[b-a4p78dvepp] {
    background-color: var(--caci-primary-blue);
}

.calendar-event.newmoon[b-a4p78dvepp] {
    background-color: var(--minister-blue);
}

.calendar-event.connectionsabbath[b-a4p78dvepp] {
    background: linear-gradient(90deg, var(--caci-primary-blue), var(--bishop-purple));
}

.calendar-event.general[b-a4p78dvepp] {
    background-color: var(--tone-mid);
}

.calendar-event.gathering[b-a4p78dvepp] {
    background-color: #FF8C00;
    /* DarkOrange */
    text-decoration: none;
    display: block;
}

.calendar-event.gathering:hover[b-a4p78dvepp] {
    background-color: #E67E00;
    color: white;
}

@media (max-width: 768px) {
    .calendar-day[b-a4p78dvepp] {
        min-height: 70px;
    }

    .calendar-event[b-a4p78dvepp] {
        font-size: 0.65rem;
    }
}
/* /Components/Layout/Footer.razor.rz.scp.css */
footer[b-lz2z4j45ch] {
    /* Background image with a white overlay to maintain contrast for dark text */
    background: linear-gradient(rgba(240, 245, 250, 0.7), rgba(240, 245, 250, 0.7)),
        url('images/images/pexels-pixabay-41949.jpg') no-repeat center center/cover;
    padding-top: 70px;
}

.footer-grid[b-lz2z4j45ch] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4[b-lz2z4j45ch] {
    color: var(--minister-blue);
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-size: 1rem;
}

.footer-col ul li[b-lz2z4j45ch] {
    margin-bottom: 12px;
}

.footer-col ul li a[b-lz2z4j45ch] {
    color: var(--menu-text);
    /* standard-gray was #5A5A5A. tone-highlight is #A4BDDD. Contrast? */
    /* Keeping original color for now as requested, but standard-gray on tone-highlight might be low contrast */
    color: var(--standard-gray);
    font-size: 0.95rem;
}

.footer-col ul li a:hover[b-lz2z4j45ch] {
    color: var(--elder-red);
    padding-left: 5px;
}

.footer-brand span[b-lz2z4j45ch] {
    display: block;
    color: var(--bishop-purple);
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-brand p[b-lz2z4j45ch] {
    color: var(--standard-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.social-icons[b-lz2z4j45ch] {
    margin-top: 15px;
    font-size: 1.2rem;
}

.social-icons a[b-lz2z4j45ch] {
    color: var(--minister-blue);
    margin-right: 15px;
}

.social-icons a:hover[b-lz2z4j45ch] {
    color: var(--elder-red);
}

.bottom-bar[b-lz2z4j45ch] {
    background-color: var(--minister-blue);
    /* padding: 10px 0; */
    text-align: center;
    font-size: 0.8rem;
    color: var(--member-white);
    /* Make the bottom bar span the full width if needed, but in footer it is normally block */
    /* It might need negative margin if container padding interferes? */
    /* Layout/Footer.razor structure: footer > container, bottom-bar > container. */
    /* footer has padding-top 70px. bottom-bar is separate div at bottom. */
}

/* Ensure bottom-bar extends full width if footer has padding? 
   Footer.razor: 
   <footer>
      <div class="container">...</div>
      <div class="bottom-bar">...</div>
   </footer>
   The footer padding-top applies to the top. The bottom-bar is a child.
   So it should work fine as in app.css.
*/

/* Ensure paragraph inside bottom bar has no margin to prevent space below */
.bottom-bar p[b-lz2z4j45ch] {
    margin-bottom: 0;
    padding: 15px 0;
    /* Add padding here or on the container to center text */
}

.bottom-bar a[b-lz2z4j45ch] {
    color: var(--tone-highlight);
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page-wrapper[b-0k37prp42a] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-0k37prp42a] {
    flex: 1;
}
/* /Components/Layout/NavBar.razor.rz.scp.css */
/* Styling for the new 'Study With Us' Pill Button */
.study-link[b-dud2uybgix] {
    background-color: var(--caci-primary-blue);
    color: var(--member-white) !important;
    /* Force white text over blue */
    padding: 10px 25px !important;
    /* Override default link padding if needed */
    border-radius: 50px;
    /* Pill shape */
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(23, 68, 119, 0.2);
    display: inline-block;
    font-weight: 700;
}

.study-link:hover[b-dud2uybgix] {
    background-color: var(--minister-blue);
    /* Darker blue on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(23, 68, 119, 0.3);
}

/* Remove the default underline hover effect from app.css for this specific button */
.main-nav .study-link[b-dud2uybgix]::after {
    display: none;
}
/* /Components/Pages/FeastDatesNew.razor.rz.scp.css */
/* Festival Layout (Copied from WhatWeBelieve.razor.css) */
.festivals-container[b-9soj2kt45p] {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 992px) {
    .festivals-container[b-9soj2kt45p] {
        flex-direction: row;
        align-items: flex-start;
    }

    .festivals-menu[b-9soj2kt45p] {
        flex: 0 0 300px;
        /* Fixed width sidebar */
        position: sticky;
        top: 100px;
        /* Adjust based on header height */
    }

    .festival-content[b-9soj2kt45p] {
        flex: 1;
        padding-left: 40px;
        border-left: 1px solid var(--tone-highlight);
    }
}

/* Menu Styling */
.festivals-menu[b-9soj2kt45p] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.festival-btn[b-9soj2kt45p] {
    appearance: none;
    border: none;
    background: transparent;
    text-align: left;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--caci-primary-blue);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.festival-btn:hover[b-9soj2kt45p] {
    background-color: var(--light-bg);
    color: var(--minister-blue);
}

.festival-btn.active[b-9soj2kt45p] {
    background-color: var(--caci-primary-blue);
    color: var(--member-white);
    border-left-color: var(--elder-red);
    box-shadow: 0 4px 10px rgba(23, 68, 119, 0.2);
}

/* Content Styling */
.festival-content[b-9soj2kt45p] {
    animation: fadeIn-b-9soj2kt45p 0.4s ease-in-out;
}

.festival-content h2[b-9soj2kt45p] {
    font-size: 2.2rem;
    color: var(--minister-blue);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.festival-content h2[b-9soj2kt45p]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--elder-red);
}

.festival-content h3[b-9soj2kt45p] {
    font-size: 1.5rem;
    color: var(--caci-primary-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.festival-content p[b-9soj2kt45p] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--standard-gray);
    margin-bottom: 1.5rem;
}

.festival-content strong[b-9soj2kt45p] {
    color: var(--caci-primary-blue);
}

.styled-list li[b-9soj2kt45p] {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 1.05rem;
    color: var(--standard-gray);
}

.styled-list li[b-9soj2kt45p]::before {
    /* content: '•'; */
    color: var(--elder-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Perspective Content Styling */
.perspective-card[b-9soj2kt45p] {
    background-color: #fffdf5;
    border-radius: 8px;
    padding: 30px;
    border-left: 5px solid var(--elder-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.perspective-subtitle[b-9soj2kt45p] {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--standard-gray);
    margin-bottom: 10px;
    font-weight: 500;
}

.perspective-divider[b-9soj2kt45p] {
    height: 3px;
    width: 60px;
    background-color: var(--caci-primary-blue);
    margin-bottom: 25px;
}

.light-card[b-9soj2kt45p] {
    background-color: var(--member-white);
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 6px;
    margin: 25px 0;
}

.scripture-box[b-9soj2kt45p] {
    background-color: var(--member-white);
    border-left: 4px solid var(--caci-primary-blue);
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.02);
}

.scripture-box.highlight[b-9soj2kt45p] {
    border-left-color: var(--elder-red);
    background-color: #fffef0;
}

.observation-steps[b-9soj2kt45p] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.step[b-9soj2kt45p] {
    display: flex;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-num[b-9soj2kt45p] {
    background-color: var(--caci-primary-blue);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    flex-shrink: 0;
}

.perspective-footer[b-9soj2kt45p] {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

/* Link Style */
.read-more-wrapper[b-9soj2kt45p] {
    margin-top: 20px;
}

.read-more-link[b-9soj2kt45p] {
    background: none;
    border: none;
    padding: 0;
    color: var(--caci-primary-blue);
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.read-more-link:hover[b-9soj2kt45p] {
    color: var(--elder-red);
}

.feast-note[b-9soj2kt45p] {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--tone-highlight);
    border-left: 5px solid var(--caci-primary-blue);
    border-radius: 4px;
    font-style: italic;
}

@keyframes fadeIn-b-9soj2kt45p {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Shared/ConnectionForm.razor.rz.scp.css */
/* Modern Split Layout */
.connection-container[b-vyulez690w] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Soft elevated shadow */
    margin: 40px 0;
}

.mt-2[b-vyulez690w] {
    margin-top: 15px;
}

@media (min-width: 992px) {
    .connection-container[b-vyulez690w] {
        grid-template-columns: 1.5fr 1fr;
    }
}

/* --- Form Section --- */
.form-section[b-vyulez690w] {
    padding: 40px;
    background-color: white;
}

.form-header h2[b-vyulez690w] {
    color: var(--caci-primary-blue);
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-header p[b-vyulez690w] {
    color: var(--standard-gray);
    margin-bottom: 30px;
}

.divider[b-vyulez690w] {
    height: 3px;
    width: 60px;
    background: var(--elder-red);
    margin-bottom: 15px;
}

/* Modern Input Styling */
.input-group[b-vyulez690w] {
    margin-bottom: 25px;
}

.input-group label[b-vyulez690w] {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--minister-blue);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[b-vyulez690w] .form-control {
    display: block;
    width: 100% !important;
    padding: 12px 15px;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: #e6e6e6;
    /* Light gray background like screenshot */
    color: #333;
    box-sizing: border-box;
    /* Ensure padding doesn't affect width */
}

.w-100[b-vyulez690w] {
    width: 100% !important;
}

.form-control:focus[b-vyulez690w] {
    background: #dcdcdc;
    box-shadow: none;
    outline: none;
}



/* Submit Button */
.btn-block[b-vyulez690w] {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 50px;
    /* Pill shape */
    margin-top: 10px;
    background: var(--caci-primary-blue);
    color: white;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-block:hover[b-vyulez690w] {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23, 68, 119, 0.3);
    background: var(--minister-blue);
}

/* --- Info Section (Right Side) --- */
.info-section[b-vyulez690w] {
    background: linear-gradient(135deg, var(--minister-blue), var(--caci-primary-blue));
    color: white;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Decorative circle overlay */
.info-section[b-vyulez690w]::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.info-card h3[b-vyulez690w] {
    color: white;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.info-divider[b-vyulez690w] {
    width: 40px;
    height: 3px;
    background: var(--tone-highlight);
    margin-bottom: 40px;
}

.info-item[b-vyulez690w] {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.icon-circle[b-vyulez690w] {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
    color: var(--tone-highlight);
}

.info-text label[b-vyulez690w] {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 2px;
}

.info-text a[b-vyulez690w],
.info-text span[b-vyulez690w] {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.social-connect[b-vyulez690w] {
    margin-top: 50px;
}

.social-connect label[b-vyulez690w] {
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-icons[b-vyulez690w] {
    display: flex;
    gap: 15px;
}

.social-icons a[b-vyulez690w] {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-icons a:hover[b-vyulez690w] {
    background: white;
    color: var(--caci-primary-blue);
}

/* Success Message Styling */
.success-message[b-vyulez690w] {
    text-align: center;
    padding: 60px 20px;
}

.success-icon[b-vyulez690w] {
    font-size: 4rem;
    color: #28a745;
    /* Success Green */
    margin-bottom: 20px;
}

.success-message h3[b-vyulez690w] {
    color: var(--minister-blue);
    font-size: 2rem;
    margin-bottom: 15px;
}
/* /Features/Calendar/CalendarAdmin.razor.rz.scp.css */
.admin-calendar-container[b-0kblzjb691] {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-header[b-0kblzjb691] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 15px;
}

.admin-header h1[b-0kblzjb691] {
    color: var(--caci-primary-blue);
    font-family: var(--font-heading);
    margin: 0;
}

.admin-actions[b-0kblzjb691] {
    display: flex;
    gap: 10px;
}

.dashboard-grid[b-0kblzjb691] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

.dashboard-panel[b-0kblzjb691] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.panel-header[b-0kblzjb691] {
    background-color: var(--light-bg);
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h2[b-0kblzjb691] {
    margin: 0;
    font-size: 1.1rem;
    color: var(--minister-blue);
    font-weight: 600;
}

.table-responsive[b-0kblzjb691] {
    overflow-x: auto;
    flex-grow: 1;
}

.table[b-0kblzjb691] {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
}

.table th[b-0kblzjb691] {
    background-color: #f8f9fa;
    color: var(--dark-text);
    font-weight: 600;
    padding: 12px 15px;
    text-align: left;
    font-size: 0.9rem;
    border-bottom: 2px solid #e9ecef;
}

.table td[b-0kblzjb691] {
    padding: 12px 15px;
    vertical-align: middle;
    border-bottom: 1px solid #f2f2f2;
    font-size: 0.95rem;
}

.badge[b-0kblzjb691] {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    white-space: nowrap;
}

/* Event Types */
.badge.feast[b-0kblzjb691] {
    background-color: var(--elder-red);
}

.badge.newmoon[b-0kblzjb691] {
    background-color: var(--minister-blue);
}

.badge.connectionsabbath[b-0kblzjb691] {
    background: linear-gradient(90deg, var(--caci-primary-blue), var(--bishop-purple));
}

.badge.general[b-0kblzjb691] {
    background-color: var(--tone-mid);
}

.badge.sabbath[b-0kblzjb691] {
    background-color: #DAA520;
}

.badge.connection[b-0kblzjb691] {
    background: linear-gradient(90deg, var(--caci-primary-blue), var(--bishop-purple));
}

.btn[b-0kblzjb691] {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary[b-0kblzjb691] {
    background-color: var(--caci-primary-blue);
    color: white;
}

.btn-primary:hover[b-0kblzjb691] {
    background-color: var(--minister-blue);
}

.btn-secondary[b-0kblzjb691] {
    background-color: #f0f0f0;
    color: #333;
}

.btn-secondary:hover[b-0kblzjb691] {
    background-color: #e0e0e0;
}

.btn-icon[b-0kblzjb691] {
    background: none;
    border: none;
    color: var(--caci-primary-blue);
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-icon:hover[b-0kblzjb691] {
    background-color: rgba(23, 68, 119, 0.1);
}

.btn-icon.delete[b-0kblzjb691] {
    color: var(--elder-red);
}

.btn-icon.delete:hover[b-0kblzjb691] {
    background-color: rgba(181, 26, 26, 0.1);
}

/* Modal Stlyes */
.modal-backdrop[b-0kblzjb691] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 5rem;
    z-index: 1000;
}

.modal-dialog[b-0kblzjb691] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    animation: slideDown-b-0kblzjb691 0.3s ease-out;
}

@keyframes slideDown-b-0kblzjb691 {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-0kblzjb691] {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title[b-0kblzjb691] {
    margin: 0;
    font-size: 1.25rem;
    color: var(--caci-primary-blue);
    font-family: var(--font-heading);
}

.close-btn[b-0kblzjb691] {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #999;
}

.modal-body[b-0kblzjb691] {
    padding: 20px;
}

.form-group[b-0kblzjb691] {
    margin-bottom: 15px;
}

.form-group label[b-0kblzjb691] {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
    font-size: 0.9rem;
}

.form-control[b-0kblzjb691] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus[b-0kblzjb691] {
    outline: none;
    border-color: var(--caci-primary-blue);
    box-shadow: 0 0 0 3px rgba(23, 68, 119, 0.1);
}

.form-group-checkbox[b-0kblzjb691] {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.form-group-checkbox label[b-0kblzjb691] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.modal-footer[b-0kblzjb691] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .dashboard-grid[b-0kblzjb691] {
        grid-template-columns: 1fr;
    }
}
/* /Features/Chat/ChatRoom.razor.rz.scp.css */
.stream-layout[b-2fde1qe30d] {
    display: flex;
    height: calc(100vh - 80px);
    /* Adjust for navbar height */
    background: var(--minister-blue);
    color: var(--member-white);
    font-family: var(--font-body);
    overflow: hidden;
}

.brand-heading[b-2fde1qe30d] {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.video-section[b-2fde1qe30d] {
    flex: 3;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #000a1a;
    /* Even darker blue for focus */
}

.video-container[b-2fde1qe30d] {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-container iframe[b-2fde1qe30d] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info[b-2fde1qe30d] {
    margin-top: 1.5rem;
}

.video-info h2[b-2fde1qe30d] {
    font-size: 2rem;
    margin: 0;
    color: var(--member-white);
}

.video-info p[b-2fde1qe30d] {
    color: var(--tone-highlight);
    margin-top: 0.6rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.chat-sidebar[b-2fde1qe30d] {
    flex: 1;
    min-width: 380px;
    display: flex;
    flex-direction: column;
    background: var(--caci-primary-blue);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.chat-sidebar.removed-state[b-2fde1qe30d] {
    background: #0f172a;
    opacity: 0.8;
    filter: grayscale(1);
}

.chat-header[b-2fde1qe30d] {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--minister-blue);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-main[b-2fde1qe30d] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-logo[b-2fde1qe30d] {
    height: 32px;
    width: auto;
}

.chat-header h3[b-2fde1qe30d] {
    margin: 0;
    font-size: 1.2rem;
    color: var(--member-white);
}

.status-indicator[b-2fde1qe30d] {
    font-size: 0.75rem;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-indicator.online[b-2fde1qe30d] {
    color: white;
    background: var(--elder-red);
    box-shadow: 0 0 10px rgba(200, 16, 46, 0.4);
    animation: pulse-b-2fde1qe30d 2s infinite;
}

@keyframes pulse-b-2fde1qe30d {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.8;
    }
}

.messages-viewport[b-2fde1qe30d] {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--tone-mid) transparent;
    background: rgba(0, 0, 0, 0.05);
    /* Subtle inner shadow look */
}

.empty-chat-hint[b-2fde1qe30d] {
    text-align: center;
    font-size: 0.9rem;
    color: var(--tone-highlight);
    margin-top: 4rem;
    opacity: 0.7;
}

.message-bubble[b-2fde1qe30d] {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 90%;
}

.message-bubble:hover[b-2fde1qe30d] {
    transform: scale(1.02);
}

.message-bubble.mine[b-2fde1qe30d] {
    background: var(--member-white);
    color: var(--minister-blue);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.message-bubble.mine .msg-user[b-2fde1qe30d] {
    color: var(--caci-primary-blue);
}

.message-bubble.mine .msg-text[b-2fde1qe30d] {
    color: #333;
}

.message-bubble.theirs[b-2fde1qe30d] {
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.message-bubble.flagged[b-2fde1qe30d] {
    border: 2px solid var(--elder-red);
    background: rgba(200, 16, 46, 0.1);
}

.msg-meta[b-2fde1qe30d] {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.msg-user[b-2fde1qe30d] {
    font-weight: 700;
    color: var(--tone-highlight);
}

.msg-time[b-2fde1qe30d] {
    opacity: 0.6;
}

.msg-text[b-2fde1qe30d] {
    font-size: 0.95rem;
    line-height: 1.5;
    word-break: break-all;
}

.admin-actions[b-2fde1qe30d] {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.2s;
}

.message-bubble:hover .admin-actions[b-2fde1qe30d] {
    opacity: 1;
}

.admin-btn[b-2fde1qe30d] {
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.admin-btn.delete[b-2fde1qe30d] {
    background: var(--elder-red);
}

.admin-btn.ban[b-2fde1qe30d] {
    background: var(--standard-gray);
}

.admin-btn:hover[b-2fde1qe30d] {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.removed-notification[b-2fde1qe30d] {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem;
}

.removed-notification h4[b-2fde1qe30d] {
    margin: 1.5rem 0 0.8rem;
    color: var(--elder-red);
    font-size: 1.4rem;
    font-family: var(--font-heading);
}

.removed-notification p[b-2fde1qe30d] {
    color: var(--tone-highlight);
    font-size: 1rem;
}

.chat-input-area[b-2fde1qe30d] {
    padding: 1.5rem;
    background: var(--minister-blue);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.removed-footer[b-2fde1qe30d] {
    text-align: center;
    color: var(--tone-highlight);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.input-wrapper[b-2fde1qe30d] {
    display: flex;
    gap: 0.8rem;
}

.chat-input[b-2fde1qe30d] {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    color: #fff;
    outline: none;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.2s;
}

.chat-input:focus[b-2fde1qe30d] {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--tone-highlight);
    box-shadow: 0 0 0 3px rgba(164, 189, 221, 0.2);
}

.send-btn[b-2fde1qe30d] {
    background: var(--caci-primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-btn:hover:not(:disabled)[b-2fde1qe30d] {
    background: var(--tone-mid);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.send-btn:disabled[b-2fde1qe30d] {
    opacity: 0.5;
    cursor: not-allowed;
}

.name-entry-column[b-2fde1qe30d] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.join-btn[b-2fde1qe30d] {
    background: var(--caci-primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.join-btn:hover[b-2fde1qe30d] {
    background: var(--tone-mid);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.name-hint[b-2fde1qe30d] {
    font-size: 0.8rem;
    color: var(--tone-highlight);
    margin: 0;
}

.admin-controls[b-2fde1qe30d] {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-badge[b-2fde1qe30d] {
    font-size: 0.75rem;
    color: var(--tone-highlight);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reset-btn[b-2fde1qe30d] {
    background: transparent;
    color: var(--member-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.reset-btn:hover[b-2fde1qe30d] {
    background: var(--elder-red);
    border-color: var(--elder-red);
}

.error-banner[b-2fde1qe30d] {
    background: var(--elder-red);
    color: white;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

@keyframes fadeIn-b-2fde1qe30d {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Mobile Responsiveness for Chat Interface */
@media (max-width: 768px) {
    .stream-layout[b-2fde1qe30d] {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }

    .video-section[b-2fde1qe30d] {
        flex: none;
        width: 100%;
        padding: 1rem;
        order: 1;
        background: #000a1a;
    }

    .video-info h2[b-2fde1qe30d] {
        font-size: 1.5rem;
    }

    .video-info p[b-2fde1qe30d] {
        font-size: 0.95rem;
    }

    .chat-sidebar[b-2fde1qe30d] {
        flex: 1;
        min-width: 100%;
        height: 600px;
        /* Fixed height for chat on mobile */
        max-height: 70vh;
        order: 2;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .chat-header[b-2fde1qe30d] {
        padding: 1rem;
    }

    .chat-logo[b-2fde1qe30d] {
        height: 28px;
    }

    .chat-header h3[b-2fde1qe30d] {
        font-size: 1rem;
    }

    .status-indicator[b-2fde1qe30d] {
        padding: 4px 10px;
        font-size: 0.7rem;
    }

    .messages-viewport[b-2fde1qe30d] {
        padding: 1rem;
    }

    .message-bubble[b-2fde1qe30d] {
        padding: 0.8rem;
        font-size: 0.9rem;
        max-width: 95%;
    }

    /* Admin actions always visible on mobile for accessibility */
    .admin-actions[b-2fde1qe30d] {
        opacity: 1;
        top: -12px;
        right: -5px;
    }

    .admin-btn[b-2fde1qe30d] {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .chat-input-area[b-2fde1qe30d] {
        padding: 1rem;
    }

    .join-btn[b-2fde1qe30d] {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .send-btn[b-2fde1qe30d] {
        padding: 0 1.2rem;
    }
}
/* /Features/Communication/BibleStudyRequest.razor.rz.scp.css */
.contact-section[b-30qnomepa3] {
    background-color: var(--light-bg);
}

.contact-container[b-30qnomepa3] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-container[b-30qnomepa3] {
        grid-template-columns: 2fr 1fr;
    }
}

.contact-form[b-30qnomepa3] {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--caci-primary-blue);
}

.form-group[b-30qnomepa3] {
    margin-bottom: 20px;
}

.form-group label[b-30qnomepa3] {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--minister-blue);
}

.required[b-30qnomepa3] {
    color: var(--elder-red);
}

.form-control[b-30qnomepa3] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus[b-30qnomepa3] {
    border-color: var(--caci-primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(23, 68, 119, 0.1);
}

.radio-label[b-30qnomepa3] {
    margin-bottom: 15px;
    display: block;
}

.radio-group[b-30qnomepa3] {
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.radio-item[b-30qnomepa3] {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    /* Changed to flex-start for multi-line text */
    flex-wrap: wrap;
}

.radio-item:last-child[b-30qnomepa3] {
    margin-bottom: 0;
}

.radio-item input[type="radio"][b-30qnomepa3] {
    margin-right: 10px;
    accent-color: var(--caci-primary-blue);
    width: 18px;
    height: 18px;
    margin-top: 4px;
    /* Align with first line of text */
}

.radio-item label[b-30qnomepa3] {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    flex: 1;
    /* Allow text to take remaining space */
}

/* Style for the "Other" text input matching the Google Form style slightly */
.other-input[b-30qnomepa3] {
    margin-top: 5px;
    margin-left: 28px;
    /* Indent to align with text */
    width: auto;
    flex-basis: 100%;
    /* Force to new line if inside flex */
    border-bottom: 1px solid #ddd;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    padding: 5px 0;
}

.other-input:focus[b-30qnomepa3] {
    box-shadow: none;
    border-bottom: 2px solid var(--caci-primary-blue);
}


.contact-info[b-30qnomepa3] {
    background: var(--caci-primary-blue);
    color: white;
    padding: 40px;
    border-radius: 8px;
    height: fit-content;
}

.contact-info h3[b-30qnomepa3] {
    color: white;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
}

.info-item[b-30qnomepa3] {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i[b-30qnomepa3] {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--tone-highlight);
    margin-top: 5px;
}

.info-item p[b-30qnomepa3] {
    margin-bottom: 0;
    font-size: 1rem;
}

.social-links[b-30qnomepa3] {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.social-links a[b-30qnomepa3] {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover[b-30qnomepa3] {
    color: var(--tone-highlight);
}

.btn-outline[b-30qnomepa3] {
    background: transparent;
    border: 1px solid var(--caci-primary-blue);
    color: var(--caci-primary-blue);
}

.btn-outline:hover[b-30qnomepa3] {
    background: var(--caci-primary-blue);
    color: white;
}
/* /Features/Communication/Contact.razor.rz.scp.css */
.contact-section[b-mhgxpd39x7] {
    background-color: var(--light-bg);
}

.contact-container[b-mhgxpd39x7] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-container[b-mhgxpd39x7] {
        grid-template-columns: 2fr 1fr;
    }
}

.contact-form[b-mhgxpd39x7] {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--caci-primary-blue);
}

.form-group[b-mhgxpd39x7] {
    margin-bottom: 20px;
}

.form-group label[b-mhgxpd39x7] {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--minister-blue);
}

.required[b-mhgxpd39x7] {
    color: var(--elder-red);
}

.form-control[b-mhgxpd39x7] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus[b-mhgxpd39x7] {
    border-color: var(--caci-primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(23, 68, 119, 0.1);
}

.radio-label[b-mhgxpd39x7] {
    margin-bottom: 15px;
    display: block;
}

.radio-group[b-mhgxpd39x7] {
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.radio-item[b-mhgxpd39x7] {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.radio-item:last-child[b-mhgxpd39x7] {
    margin-bottom: 0;
}

.radio-item input[type="radio"][b-mhgxpd39x7] {
    margin-right: 10px;
    accent-color: var(--caci-primary-blue);
    width: 18px;
    height: 18px;
}

.radio-item label[b-mhgxpd39x7] {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.contact-info[b-mhgxpd39x7] {
    background: var(--caci-primary-blue);
    color: white;
    padding: 40px;
    border-radius: 8px;
    height: fit-content;
}

.contact-info h3[b-mhgxpd39x7] {
    color: white;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
}

.info-item[b-mhgxpd39x7] {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i[b-mhgxpd39x7] {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--tone-highlight);
    margin-top: 5px;
}

.info-item p[b-mhgxpd39x7] {
    margin-bottom: 0;
    font-size: 1rem;
}

.social-links[b-mhgxpd39x7] {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.social-links a[b-mhgxpd39x7] {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover[b-mhgxpd39x7] {
    color: var(--tone-highlight);
}
/* /Features/Communication/DocumentsOnDemand.razor.rz.scp.css */
/* Layout */
.documents-grid[b-4ga00gt1bx] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Document Card */
.document-card[b-4ga00gt1bx] {
    background-color: var(--card-bg, #fff);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow, 0 4px 6px rgba(0, 0, 0, 0.1));
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color, #eee);
    height: 100%;
}

.document-card:hover[b-4ga00gt1bx] {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-image-wrapper[b-4ga00gt1bx] {
    height: 200px;
    background-color: var(--light-bg, #f8f9fa);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.card-image[b-4ga00gt1bx] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Keeps the whole document visible */
    transition: transform 0.5s ease;
}

.document-card:hover .card-image[b-4ga00gt1bx] {
    transform: scale(1.05);
}

.card-content[b-4ga00gt1bx] {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title[b-4ga00gt1bx] {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--caci-primary-blue, #0d2c4e);
    margin-bottom: 10px;
}

.card-description[b-4ga00gt1bx] {
    font-size: 1rem;
    color: var(--standard-gray, #666);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.card-btn[b-4ga00gt1bx] {
    display: inline-block;
    color: var(--minister-blue, #0056b3);
    font-weight: 600;
    font-size: 0.95rem;
    padding-top: 15px;
    border-top: 1px solid var(--border-color, #eee);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-btn i[b-4ga00gt1bx] {
    transition: transform 0.3s ease;
}

.document-card:hover .card-btn i[b-4ga00gt1bx] {
    transform: translateY(3px);
}
/* /Features/Communication/StudyWithUs.razor.rz.scp.css */
/* Study With Us Layout */
.study-grid[b-6rngen1pm0] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .study-grid[b-6rngen1pm0] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Card Styling */
.study-card[b-6rngen1pm0] {
    background-color: var(--member-white);
    border-radius: 8px;
    /* Rounded corners */
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    /* Remove underline from links */
    height: 100%;
}

.study-card:hover[b-6rngen1pm0] {
    transform: translateY(-5px);
    /* Lift up on hover */
    box-shadow: 0 10px 30px rgba(23, 68, 119, 0.2);
    /* Stronger shadow */
}

/* Image/Thumbnail */
.card-image-wrapper[b-6rngen1pm0] {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: var(--minister-blue);
}

.card-image[b-6rngen1pm0] {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
}

.study-card:hover .card-image[b-6rngen1pm0] {
    transform: scale(1.05);
    /* Subtle zoom effect */
}

/* Custom Card Header (Blue Bar Design) */
.custom-card-header[b-6rngen1pm0] {
    background-color: white;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 2px solid #E9ECEF;
}

.blue-bar[b-6rngen1pm0] {
    width: 100%;
    height: 12px;
    background-color: var(--caci-primary-blue);
}

.header-top-text[b-6rngen1pm0] {
    color: var(--caci-primary-blue);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 15px;
    letter-spacing: 1px;
    font-style: italic;
}

.header-logo-container[b-6rngen1pm0] {
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo[b-6rngen1pm0] {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.header-main-title[b-6rngen1pm0] {
    color: var(--minister-blue);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.header-sub-title[b-6rngen1pm0] {
    color: var(--caci-primary-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Card Content */
.card-content[b-6rngen1pm0] {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.card-title[b-6rngen1pm0] {
    /* font-family: var(--font-heading); */
    font-size: 1.5rem;
    color: var(--caci-primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.card-description[b-6rngen1pm0] {
    color: var(--standard-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Button Styling (mimicking the "Start this Lesson" button) */
.card-btn[b-6rngen1pm0] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--caci-primary-blue);
    color: var(--member-white);
    padding: 12px 25px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    align-self: center;
    gap: 10px;
}

.card-btn i[b-6rngen1pm0] {
    font-size: 0.9rem;
}

.study-card:hover .card-btn[b-6rngen1pm0] {
    background-color: var(--minister-blue);
}
/* /Features/Identity/MeetTheCaci.razor.rz.scp.css */
.section-padding .container p[b-i7m2vuqe6x] {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}
/* /Features/Identity/Ministry.razor.rz.scp.css */
.ministry-hero[b-4pjttuhbmb] {
    background-color: var(--light-bg);
}

.ministry-body[b-4pjttuhbmb] {
    padding-top: 0;
}

.ministry-body h2[b-4pjttuhbmb],
.ministry-body h3[b-4pjttuhbmb],
.ministry-body h4[b-4pjttuhbmb] {
    color: var(--caci-primary-blue);
    margin-top: 2em;
}

.ministry-body h3[b-4pjttuhbmb] {
    border-bottom: 2px solid var(--bishop-purple);
    padding-bottom: 0.5em;
    margin-bottom: 1em;
}

.ministry-body blockquote[b-4pjttuhbmb] {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--caci-primary-blue);
    border-left: 5px solid var(--minister-blue);
    margin: 2rem 0;
    padding: 10px 0 10px 20px;
    line-height: 1.6;
}

.ministry-body ol[b-4pjttuhbmb] {
    list-style: decimal;
    margin-left: 2em;
    margin-bottom: 2em;
}

.ministry-body ol li[b-4pjttuhbmb] {
    margin-bottom: 1em;
}
/* /Features/Theology/12Foundations.razor.rz.scp.css */
.section-padding .container p[b-pmwsuiw5s6] {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.video-container[b-pmwsuiw5s6] {
    display: flex;
    padding: 10px;
    margin-top: 20px;
    justify-content: center;
}

.row[b-pmwsuiw5s6] {
    display: flex;
    /* Use Flexbox for layout */
    align-items: center;
    /* Vertically centers content within the row */
    margin-bottom: 40px;
    /* Spacing between rows */
    flex-wrap: wrap;
    /* Allows columns to wrap on smaller screens */
}


/* Responsive design: Stack columns on top of each other on screens less than 768px wide */
@media screen and (max-width: 768px) {

    .row[b-pmwsuiw5s6],
    .container .row:nth-child(even)[b-pmwsuiw5s6] {
        flex-direction: column;
        /* Stacks columns vertically */
    }
}
/* /Features/Theology/4Keys.razor.rz.scp.css */
.section-padding .container p[b-4swfk402kw] {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.video-container[b-4swfk402kw] {
    display: flex;
    padding: 10px;
    margin-top: 20px;
    justify-content: center;
}

.row[b-4swfk402kw] {
    display: flex;
    /* Use Flexbox for layout */
    align-items: center;
    /* Vertically centers content within the row */
    margin-bottom: 40px;
    /* Spacing between rows */
    flex-wrap: wrap;
    /* Allows columns to wrap on smaller screens */
}


/* Responsive design: Stack columns on top of each other on screens less than 768px wide */
@media screen and (max-width: 768px) {

    .row[b-4swfk402kw],
    .container .row:nth-child(even)[b-4swfk402kw] {
        flex-direction: column;
        /* Stacks columns vertically */
    }
}
/* /Features/Theology/4Pillars.razor.rz.scp.css */
/* 4 Pillars Page Styles */
.content-body[b-1u0zq7ds18] {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mission-quote[b-1u0zq7ds18] {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--caci-primary-blue);
    margin: 20px auto 40px;
    max-width: 800px;
    border-left: none;
    /* Override global blockquote style if needed */
}

.keys-grid[b-1u0zq7ds18] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .keys-grid[b-1u0zq7ds18] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .keys-grid[b-1u0zq7ds18] {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Force equal height for cards inside the grid */
[b-1u0zq7ds18] .card {
    height: 100%;
    margin: 0 !important;
    /* Override CardBible's margin: auto to allow stretching */
    display: flex;
    flex-direction: column;
}

[b-1u0zq7ds18] .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* /Features/Theology/FeastDates.razor.rz.scp.css */
/* --- GENERAL SECTION STYLES --- */
.section[b-hemty95gll] {
    padding: 60px 0;
}

.section-light[b-hemty95gll] {
    background-color: var(--light-bg);
}

.section-dark[b-hemty95gll] {
    background-color: var(--caci-primary-blue);
    color: var(--member-white);
}

.section-dark h2[b-hemty95gll],
.section-dark h3[b-hemty95gll] {
    color: var(--member-white);
}

/* --- Page Specific Styles: FEAST DATES --- */
.feast-intro[b-hemty95gll] {
    background: linear-gradient(135deg, var(--caci-primary-blue), var(--bishop-purple));
    color: var(--member-white);
    padding: 80px 0;
    text-align: center;
}

.feast-intro h1[b-hemty95gll] {
    color: var(--member-white);
    font-size: 3rem;
    margin-bottom: 10px;
}


/* --- New styles for two-column text layout --- */
.feast-intro .feast-text-columns[b-hemty95gll] {
    display: grid;
    grid-template-columns: 1fr;
    /* Default to single column for mobile */
    gap: 30px;
    max-width: 1000px;
    margin: 30px auto 20px auto;
    text-align: left;
    /* Aligns text left in the columns */
    padding: 0 20px;
    /* Add padding for mobile view to prevent text touching edges */
}

/* Target paragraphs inside the column container */
.feast-intro .feast-text-columns p[b-hemty95gll] {
    /* Override general 'feast-intro p' styles that set max-width and margin auto */
    max-width: none;
    margin: 0;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feast-intro .feast-note-section[b-hemty95gll] {
    max-width: 1000px;
    margin: 20px auto 30px auto;
    /* Margin to separate from button */
    text-align: left;
    padding: 0 20px;
}

.feast-intro .feast-note-section p[b-hemty95gll] {
    font-weight: 500;
    font-size: 1.0rem;
    margin: 0;
}

.feast-note-section p[b-hemty95gll] {
    color: var(--tone-highlight)
}

/* Desktop Styles for Two Columns */
@media (min-width: 900px) {
    .feast-intro .feast-text-columns[b-hemty95gll] {
        grid-template-columns: repeat(2, 1fr);
        /* Two columns on desktop */
        text-align: justify;
    }
}

/* ------------------------------------------- */

.feast-grid[b-hemty95gll] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feast-card[b-hemty95gll] {
    background-color: var(--member-white);
    border: 1px solid #ddd;
    border-top: 5px solid var(--elder-red);
    /* Accent color */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feast-card:hover[b-hemty95gll] {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feast-card h3[b-hemty95gll] {
    font-size: 1.8rem;
    color: var(--minister-blue);
    margin-bottom: 5px;
}

.feast-card .date-details[b-hemty95gll] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--elder-red);
    margin-bottom: 15px;
    border-bottom: 1px dashed var(--tone-highlight);
    padding-bottom: 10px;
    display: block;
}

.feast-card p[b-hemty95gll] {
    font-size: 0.95rem;
    color: var(--standard-gray);
}

.feast-note[b-hemty95gll] {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--tone-highlight);
    border-left: 5px solid var(--caci-primary-blue);
    border-radius: 4px;
    font-style: italic;
}

@media (max-width: 768px) {
    .feast-intro h1[b-hemty95gll] {
        font-size: 2.5rem;
    }
}
/* /Features/Theology/Sabbath.razor.rz.scp.css */
/* Beliefs Layout */
.beliefs-container[b-6x7zm8vr4t] {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 992px) {
    .beliefs-container[b-6x7zm8vr4t] {
        flex-direction: row;
        align-items: flex-start;
    }

    .beliefs-menu[b-6x7zm8vr4t] {
        flex: 0 0 300px;
        /* Fixed width sidebar */
        position: sticky;
        top: 100px;
        /* Adjust based on header height */
    }

    .belief-content[b-6x7zm8vr4t] {
        flex: 1;
        padding-left: 40px;
        border-left: 1px solid var(--tone-highlight);
    }
}

/* Menu Styling */
.beliefs-menu[b-6x7zm8vr4t] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.belief-btn[b-6x7zm8vr4t] {
    appearance: none;
    border: none;
    background: transparent;
    text-align: left;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--caci-primary-blue);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.belief-btn:hover[b-6x7zm8vr4t] {
    background-color: var(--light-bg);
    color: var(--minister-blue);
}

.belief-btn.active[b-6x7zm8vr4t] {
    background-color: var(--caci-primary-blue);
    color: var(--member-white);
    border-left-color: var(--elder-red);
    box-shadow: 0 4px 10px rgba(23, 68, 119, 0.2);
}

/* Content Styling */
.belief-content[b-6x7zm8vr4t] {
    animation: fadeIn-b-6x7zm8vr4t 0.4s ease-in-out;
}

.belief-content h2[b-6x7zm8vr4t] {
    font-size: 2.2rem;
    color: var(--minister-blue);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.belief-content h2[b-6x7zm8vr4t]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--elder-red);
}

.belief-content h3[b-6x7zm8vr4t] {
    font-size: 1.5rem;
    color: var(--caci-primary-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.belief-content p[b-6x7zm8vr4t] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--standard-gray);
    margin-bottom: 1.5rem;
}

.styled-list li[b-6x7zm8vr4t] {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 1.05rem;
    color: var(--standard-gray);
}

/* .styled-list li::before {
    content: '•';
    color: var(--elder-red);
    font-weight: bold;
    position: absolute;
    left: 0;
} */

@keyframes fadeIn-b-6x7zm8vr4t {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Features/Theology/WhatWeBelieve.razor.rz.scp.css */
/* Beliefs Layout */
.beliefs-container[b-0ynnozh269] {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 992px) {
    .beliefs-container[b-0ynnozh269] {
        flex-direction: row;
        align-items: flex-start;
    }

    .beliefs-menu[b-0ynnozh269] {
        flex: 0 0 300px;
        /* Fixed width sidebar */
        position: sticky;
        top: 100px;
        /* Adjust based on header height */
    }

    .belief-content[b-0ynnozh269] {
        flex: 1;
        padding-left: 40px;
        border-left: 1px solid var(--tone-highlight);
    }
}

/* Menu Styling */
.beliefs-menu[b-0ynnozh269] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.belief-btn[b-0ynnozh269] {
    appearance: none;
    border: none;
    background: transparent;
    text-align: left;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--caci-primary-blue);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.belief-btn:hover[b-0ynnozh269] {
    background-color: var(--light-bg);
    color: var(--minister-blue);
}

.belief-btn.active[b-0ynnozh269] {
    background-color: var(--caci-primary-blue);
    color: var(--member-white);
    border-left-color: var(--elder-red);
    box-shadow: 0 4px 10px rgba(23, 68, 119, 0.2);
}

/* Content Styling */
.belief-content[b-0ynnozh269] {
    animation: fadeIn-b-0ynnozh269 0.4s ease-in-out;
}

.belief-content h2[b-0ynnozh269] {
    font-size: 2.2rem;
    color: var(--minister-blue);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.belief-content h2[b-0ynnozh269]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--elder-red);
}

.belief-content h3[b-0ynnozh269] {
    font-size: 1.5rem;
    color: var(--caci-primary-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.belief-content p[b-0ynnozh269] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--standard-gray);
    margin-bottom: 1.5rem;
}

.styled-list li[b-0ynnozh269] {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 1.05rem;
    color: var(--standard-gray);
}

/* .styled-list li::before {
    content: '•';
    color: var(--elder-red);
    font-weight: bold;
    position: absolute;
    left: 0;
} */

@keyframes fadeIn-b-0ynnozh269 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
