html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

@media (max-width: 576px) {
    .footer {
        padding: 30px 0;
    }

    .container, .container-fluid {
        padding-bottom: 70px; /* Extra padding to avoid overlap */
    }
}

.event-header {
    background-color: #FF9933; /* Saffron background */
    color: white; /* White text */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Spacious padding */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.event-title {
    font-size: 1.8rem; /* Larger font for the title */
    font-weight: bold;
    text-transform: uppercase; /* Optional: Uppercase title */
}

.event-details p {
    font-size: 1rem; /* Standard font size for details */
    margin-bottom: 0.5rem; /* Consistent spacing between details */
}

.event-details i {
    color: #FFD700; /* Golden color for icons */
    margin-right: 8px; /* Space between icon and text */
}

.spinner-border {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.form-check-label {
    font-size: 14px;
    line-height: 1.5;
}

#declarationCheckbox {
    margin-right: 10px;
}

.form-check {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

    .form-check .form-check-label {
        font-size: 14px;
        line-height: 1.6;
    }

    .form-check .form-check-input {
        margin-right: 10px;
    }

    .form-check strong {
        color: #444;
    }

.form-check-label span {
    color: #FF9933; /* Saffron color for emphasis */
}


.latest-news {
    background: #000;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.news-label {
    color: #EAEAEA;
    font-weight: 700;
}

.news-ticker {
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
}

.news-track {
    display: inline-flex;
    gap: 40px;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
}

.news-item a {
    color: #00FFFF;
    text-decoration: none;
    font-weight: 600;
}

.news-ticker:hover .news-track {
    animation-play-state: paused;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes ts-ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
    /* because we render two copies */
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .news-track {
        animation: none;
    }
}