﻿body {
    background-color: #f8f9fa;
}

.event-container {
    padding: 20px;
}

.event-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.2s;
}

    .event-card:hover {
        transform: scale(1.02);
    }

.event-title {
    font-size: 1.5em;
    color: #333;
}

.event-date {
    font-size: 1em;
    color: #888;
    margin-bottom: 10px;
}

.event-description {
    margin-bottom: 10px;
}

.btn-primary {
    background-color: #5c6bc0;
    border-color: #46b8da;
}

.register-header {
    margin-top: 10px; /* reduce space above the section */
    margin-bottom: 10px; /* reduce space below the section */
    padding-top: 0; /* remove any extra padding if needed */
    padding-bottom: 0;
}

    .register-header h1 {
        margin-top: 0; /* remove default h1 top margin */
        margin-bottom: 5px; /* smaller space below h1 */
    }

    .register-header p {
        margin-top: 0; /* remove extra top margin */
        margin-bottom: 5px; /* smaller space below paragraph */
    }

.normal-bold {
    text-transform: none !important; /* removes uppercase */
    font-weight: 700; /* makes it bold */
}

.faq-section .section-title {
    margin-bottom: 10px; /* reduce space between rows */
}

.faq-section h4 {
    margin-bottom: 5px; /* tighten heading spacing */
}

.faq-section p {
    margin-bottom: 5px; /* tighten paragraph spacing */
}
