* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar */
.navbar {
    background-color: #115985;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 50px;
    width: auto;
    transition: opacity 0.3s;
}

.navbar-logo:hover img {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.donate-btn {
    background-color: #c5383f;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.donate-btn:hover {
    background-color: #a02e34;
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #666;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(17, 89, 133, 0.8);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: rgba(17, 89, 133, 1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: white;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.header-section {
    text-align: center;
    margin: 3rem 0;
}

.header-section h1 {
    color: #c5383f;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.header-section h2 {
    color: #115985;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.header-section h3 {
    color: #666;
    font-size: 1.2rem;
    font-weight: normal;
}

/* Accordion */
.accordion {
    margin: 2rem 0;
}

.accordion-item {
    border: 2px solid #115985;
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    background-color: #115985;
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #0d4568;
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: white;
}

.accordion-content.active {
    max-height: 3000px;
}

.accordion-body {
    padding: 2rem;
}

.packet-link {
    display: inline-block;
    background-color: #c5383f;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.packet-link:hover {
    background-color: #a02e34;
}

blockquote {
    background-color: #f5f5f5;
    border-left: 5px solid #115985;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #555;
}

.explainer-text {
    color: #444;
    line-height: 1.8;
}

.explainer-text p {
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: #115985;
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

.footer p {
    margin: 0.5rem 0;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 2rem;
}

.social-icons a {
    color: white;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .navbar-logo img {
        height: 40px;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .carousel-slide {
        height: 250px;
    }

    .header-section h1 {
        font-size: 2rem;
    }

    .header-section h2 {
        font-size: 1.2rem;
    }

    .accordion-header {
        font-size: 1rem;
        padding: 1rem;
    }

    .accordion-body {
        padding: 1rem;
    }

    .container {
        padding: 1rem;
    }
}

/* Sign Page Styles */
.sign-info {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    line-height: 1.8;
}

.sign-info p {
    margin-bottom: 1.5rem;
    color: #444;
}

.interest-form-btn {
    display: inline-block;
    background-color: #c5383f;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.interest-form-btn:hover {
    background-color: #a02e34;
}

.events-section {
    margin-top: 3rem;
}

.events-section h2 {
    color: #115985;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.event-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.event-filters input {
    padding: 0.8rem;
    border: 2px solid #115985;
    border-radius: 5px;
    font-size: 1rem;
    min-width: 200px;
}

.event-filters button {
    padding: 0.8rem 1.5rem;
    background-color: #115985;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.event-filters button:hover {
    background-color: #0d4568;
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    background-color: white;
    border: 2px solid #115985;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.event-date {
    color: #115985;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.event-time {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.event-location {
    margin-bottom: 1rem;
}

.event-location p {
    margin: 0.3rem 0;
    color: #444;
}

.event-city {
    font-weight: 600;
    font-size: 1.1rem;
    color: #115985;
}

.event-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.event-actions a,
.event-actions button {
    flex: 1;
    padding: 0.8rem;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.map-link {
    background-color: #115985;
    color: white;
}

.map-link:hover {
    background-color: #0d4568;
}

.register-btn {
    background-color: #c5383f;
    color: white;
    border: none;
    cursor: pointer;
}

.register-btn:hover {
    background-color: #a02e34;
}

.no-events {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .events-list {
        grid-template-columns: 1fr;
    }
    
    .event-filters {
        flex-direction: column;
    }
    
    .event-filters input {
        width: 100%;
    }
}

/* Volunteer Page Styles */
.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 0.5rem;
}

.volunteer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.volunteer-card {
    background-color: white;
    border: 2px solid #115985;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.volunteer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 3rem;
    color: #115985;
    margin-bottom: 1rem;
}

.volunteer-card h3 {
    color: #115985;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.volunteer-card p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-btn {
    background-color: #c5383f;
    color: white;
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: auto;
    text-decoration: none;
    display: inline-block;
}

.card-btn:hover {
    background-color: #a02e34;
    text-decoration: none;
}

@media (max-width: 768px) {
    .volunteer-cards {
        grid-template-columns: 1fr;
    }
}

/* Volunteer Digital Toolkit Page */
.toolkit-section {
    margin: 3rem 0;
}

.toolkit-section h2 {
    color: #115985;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #115985;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.graphics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.graphic-item {
    background-color: white;
    border: 2px solid #115985;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.graphic-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.download-link {
    background-color: #115985;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-link:hover {
    background-color: #0d4568;
}

.placeholder-text {
    color: #666;
    font-style: italic;
    text-align: center;
    padding: 2rem;
}

@media (max-width: 768px) {
    .toolkit-section h2 {
        font-size: 1.5rem;
    }
    
    .downloads-grid,
    .graphics-grid {
        grid-template-columns: 1fr;
    }
}

/* Admin Page Styles */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-email {
    color: white;
    font-weight: 600;
}

.sign-out-btn {
    background-color: #c5383f;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sign-out-btn:hover {
    background-color: #a02e34;
}

.admin-controls {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.add-event-btn,
.publish-btn,
.save-events-btn,
.back-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.add-event-btn {
    background-color: #115985;
    color: white;
}

.add-event-btn:hover {
    background-color: #0d4568;
}

.publish-btn {
    background-color: #c5383f;
    color: white;
}

.publish-btn:hover {
    background-color: #a02e34;
}

.save-events-btn {
    background-color: #2e7d32;
    color: white;
}

.save-events-btn:hover {
    background-color: #1b5e20;
}

.back-btn {
    background-color: #666;
    color: white;
}

.back-btn:hover {
    background-color: #555;
}

.admin-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.admin-action-card {
    background-color: white;
    border: 2px solid #115985;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.admin-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.admin-action-card .card-icon {
    font-size: 3rem;
    color: #115985;
    margin-bottom: 1rem;
}

.admin-action-card h3 {
    color: #115985;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.admin-action-card p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.admin-action-card .card-btn {
    background-color: #c5383f;
    color: white;
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: auto;
    text-decoration: none;
    display: inline-block;
}

.admin-action-card .card-btn:hover {
    background-color: #a02e34;
}

.events-editor {
    margin-top: 2rem;
}

.events-table {
    background-color: white;
    border: 2px solid #115985;
    border-radius: 8px;
    overflow: hidden;
}

.events-table-header {
    display: grid;
    grid-template-columns: 150px 120px 1fr 80px;
    background-color: #115985;
    color: white;
    padding: 1rem;
    font-weight: 600;
    gap: 1rem;
}

.events-table-row {
    border-bottom: 1px solid #e0e0e0;
}

.events-table-row:last-child {
    border-bottom: none;
}

.table-row-summary {
    display: grid;
    grid-template-columns: 150px 120px 1fr 80px;
    padding: 1rem;
    gap: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    align-items: center;
}

.table-row-summary:hover {
    background-color: #f5f5f5;
}

.events-table-row.expanded .table-row-summary {
    background-color: #e3f2fd;
    border-bottom: 2px solid #115985;
}

.col-date,
.col-time,
.col-location {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.col-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.delete-btn-small {
    background-color: #c5383f;
    color: white;
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.delete-btn-small:hover {
    background-color: #a02e34;
}

.view-registrations-btn-small {
    background-color: #115985;
    color: white;
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.view-registrations-btn-small:hover {
    background-color: #0d4568;
}

.table-row-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9f9f9;
}

.events-table-row.expanded .table-row-details {
    max-height: 800px;
}

.table-row-details-inner {
    padding: 2rem;
    border-top: 1px solid #e0e0e0;
}

.events-table-row .event-editor-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.event-actions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
}

.save-event-btn {
    background-color: #2e7d32;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.save-event-btn:hover {
    background-color: #1b5e20;
}

@media (max-width: 768px) {
    .events-table-header,
    .table-row-summary {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .events-table-header > div,
    .table-row-summary > div {
        padding: 0.25rem 0;
    }
    
    .events-table-header .col-actions {
        display: none;
    }
    
    .col-date::before {
        content: 'Date: ';
        font-weight: 600;
    }
    
    .col-time::before {
        content: 'Time: ';
        font-weight: 600;
    }
    
    .col-location::before {
        content: 'Location: ';
        font-weight: 600;
    }
    
    .events-table-row .event-editor-form {
        grid-template-columns: 1fr;
    }
}

.event-editor-card {
    background-color: white;
    border: 2px solid #115985;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.event-editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.event-editor-header h3 {
    color: #115985;
    margin: 0;
}

.delete-btn {
    background-color: #c5383f;
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.delete-btn:hover {
    background-color: #a02e34;
}

.event-editor-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #115985;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input {
    padding: 0.8rem;
    border: 2px solid #115985;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #0d4568;
}

.status-message {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: none;
    z-index: 1000;
}

.status-message.success {
    background-color: #2e7d32;
    color: white;
}

.status-message.error {
    background-color: #c5383f;
    color: white;
}

.status-message.info {
    background-color: #115985;
    color: white;
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }
    
    .nav-right {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .admin-controls {
        flex-direction: column;
    }
    
    .add-event-btn,
    .publish-btn,
    .save-events-btn {
        width: 100%;
        justify-content: center;
    }
    
    .event-editor-form {
        grid-template-columns: 1fr;
    }
    
    .event-editor-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .delete-btn {
        width: 100%;
        justify-content: center;
    }
    
    .event-actions {
        justify-content: stretch;
    }
    
    .save-event-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Let Us Know Form Styles */
.form-container {
    max-width: 700px;
    margin: 2rem auto;
}

.let-us-know-form {
    background-color: white;
    border: 2px solid #115985;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.let-us-know-form .form-group {
    margin-bottom: 1.5rem;
}

.let-us-know-form label {
    display: block;
    color: #115985;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.required {
    color: #c5383f;
}

.let-us-know-form input[type="text"],
.let-us-know-form input[type="email"],
.let-us-know-form select,
.let-us-know-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #115985;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: border-color 0.3s;
}

.let-us-know-form input:focus,
.let-us-know-form select:focus,
.let-us-know-form textarea:focus {
    outline: none;
    border-color: #0d4568;
}

.let-us-know-form select {
    cursor: pointer;
}

.let-us-know-form textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    cursor: pointer;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s;
}

.checkbox-label:hover {
    background-color: #f5f5f5;
    border-color: #115985;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    flex: 1;
    line-height: 1.5;
    color: #444;
}

.checkbox-label input[type="checkbox"]:checked + span {
    font-weight: 600;
    color: #115985;
}

.field-help {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.field-help a {
    color: #115985;
    font-weight: 600;
    text-decoration: underline;
}

.field-help a:hover {
    color: #0d4568;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.submit-btn {
    background-color: #c5383f;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.submit-btn:hover:not(:disabled) {
    background-color: #a02e34;
}

.submit-btn:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.cancel-btn {
    background-color: #666;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cancel-btn:hover {
    background-color: #555;
}

.success-message {
    background-color: #e8f5e9;
    border: 2px solid #2e7d32;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
}

.success-message i {
    font-size: 4rem;
    color: #2e7d32;
    margin-bottom: 1rem;
}

.success-message h2 {
    color: #2e7d32;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.success-message p {
    color: #1b5e20;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.back-to-events-btn {
    display: inline-block;
    background-color: #115985;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-to-events-btn:hover {
    background-color: #0d4568;
}

.error-message {
    background-color: #ffebee;
    border: 2px solid #c5383f;
    border-radius: 8px;
    padding: 1rem;
    color: #c5383f;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
    }
    
    .let-us-know-form {
        padding: 1.5rem;
    }
    
    .success-message {
        padding: 2rem 1rem;
    }
    
    .success-message i {
        font-size: 3rem;
    }
    
    .success-message h2 {
        font-size: 1.2rem;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 2px solid #115985;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #115985;
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background-color: transparent;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #c5383f;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 2px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
}

.modal-close-btn {
    background-color: #115985;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.modal-close-btn:hover {
    background-color: #0d4568;
}

.registration-count {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #115985;
}

.no-registrations {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.1rem;
}

.registrations-table-container {
    overflow-x: auto;
}

.registrations-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

.registrations-table thead {
    background-color: #115985;
    color: white;
}

.registrations-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #0d4568;
}

.registrations-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    color: #444;
}

.registrations-table tbody tr:hover {
    background-color: #f5f5f5;
}

.registrations-table em {
    color: #999;
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .registrations-table {
        font-size: 0.9rem;
    }
    
    .registrations-table th,
    .registrations-table td {
        padding: 0.7rem 0.5rem;
    }
}
/* View Suggestions Page */
.suggestions-viewer {
    margin-top: 2rem;
}

.suggestions-days-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.suggestion-day-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.suggestion-day-card:hover {
    border-color: #115985;
    box-shadow: 0 2px 8px rgba(17, 89, 133, 0.1);
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    user-select: none;
}

.day-header:hover {
    background: #e9ecef;
}

.day-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.day-info i {
    color: #115985;
    font-size: 1.2rem;
}

.day-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.expand-icon {
    color: #666;
    transition: transform 0.3s;
}

.expand-icon.expanded {
    transform: rotate(180deg);
}

.day-suggestions {
    padding: 1rem;
    background: white;
}

.loading-suggestions {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.suggestions-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.suggestion-item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s;
}

.suggestion-item:hover {
    border-color: #115985;
}

.suggestion-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    cursor: pointer;
}

.suggestion-preview:hover {
    background: #e9ecef;
}

.suggestion-number {
    font-weight: 700;
    color: #115985;
    font-size: 0.95rem;
    min-width: 40px;
}

.suggestion-id-short {
    font-family: 'Courier New', monospace;
    color: #666;
    font-size: 0.9rem;
}

.view-icon {
    margin-left: auto;
    color: #115985;
}

.suggestion-details {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.loading-suggestion {
    text-align: center;
    padding: 1rem;
    color: #666;
}

.suggestion-detail-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-row {
    display: flex;
    gap: 0.5rem;
}

.detail-row.full-width {
    flex-direction: column;
}

.detail-label {
    font-weight: 600;
    color: #115985;
    min-width: 100px;
}

.detail-value {
    color: #333;
}

.suggestion-text {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    white-space: pre-wrap;
    line-height: 1.6;
    color: #444;
    margin-top: 0.5rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #999;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ddd;
}

.empty-state p {
    font-size: 1.1rem;
    margin: 0;
}

.empty-state-small {
    text-align: center;
    padding: 2rem;
    color: #999;
    font-style: italic;
}

.loading-message {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.1rem;
}

.loading-message i {
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .day-header {
        padding: 1rem;
    }
    
    .day-date {
        font-size: 1rem;
    }
    
    .suggestion-preview {
        padding: 0.8rem;
    }
    
    .suggestion-details {
        padding: 1rem;
    }
    
    .detail-label {
        min-width: 80px;
        font-size: 0.9rem;
    }
}

/* View Volunteer Signups Page - Mirror of Suggestions Styling */
.signups-days-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.signup-day-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.signup-day-card:hover {
    border-color: #115985;
    box-shadow: 0 2px 8px rgba(17, 89, 133, 0.1);
}

.day-signups {
    padding: 1rem;
    background: white;
}

.loading-signups {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.signups-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.signup-item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s;
}

.signup-item:hover {
    border-color: #115985;
}

.signup-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    cursor: pointer;
}

.signup-preview:hover {
    background: #e9ecef;
}

.signup-number {
    font-weight: 700;
    color: #115985;
    font-size: 0.95rem;
    min-width: 40px;
}

.signup-id-short {
    font-family: 'Courier New', monospace;
    color: #666;
    font-size: 0.9rem;
}

.signup-details {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.loading-signup {
    text-align: center;
    padding: 1rem;
    color: #666;
}

.signup-detail-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.signup-text {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    white-space: pre-wrap;
    line-height: 1.6;
    color: #444;
    margin-top: 0.5rem;
}

/* Page Banner */
.page-banner {
    width: 100%;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    border-bottom: 3px solid #115985;
}

.page-banner img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Section Banner within Accordion */
.section-banner {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto 1.5rem auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .page-banner {
        padding: 1rem 0.5rem;
    }
    
    .page-banner img {
        max-height: 200px;
    }
    
    .section-banner {
        margin-bottom: 1rem;
    }
}

/* Mobile Navigation */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: #115985;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        background-color: white;
        border: 2px solid #115985;
        border-radius: 4px;
        padding: 0.5rem 0.7rem;
    }
    
    .hamburger-menu:active {
        background-color: #f0f0f0;
    }
    
    .navbar {
        position: relative;
        flex-wrap: wrap;
    }
    
    .navbar-logo {
        flex: 1;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 1rem 2rem;
        border-bottom: 1px solid #e0e0e0;
        width: 100%;
        text-align: left;
        color: #115985;
        text-decoration: none;
        font-weight: 500;
    }
    
    .nav-links a:hover {
        background-color: #f5f5f5;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    /* Hide desktop donate button on mobile */
    .navbar > .donate-btn {
        display: none !important;
    }
    
    /* Show mobile donate link only on mobile */
    .mobile-donate-link {
        display: block !important;
    }
    
    .nav-right {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        z-index: 999;
        margin-top: 0;
    }
    
    .nav-right.active {
        display: flex;
    }
    
    .nav-right .user-email {
        padding: 0.5rem 2rem;
        text-align: left;
        color: #333;
    }
    
    .nav-right .sign-out-btn {
        margin: 0.5rem 2rem;
        width: calc(100% - 4rem);
    }
}

/* Hide mobile donate link on desktop */
@media (min-width: 769px) {
    .mobile-donate-link {
        display: none !important;
    }
}