body {
    padding-bottom: 50px;
    /* Adjust this value based on the height of your fixed button */
}

p{
  text-align: justify;
}

:root {
    --primary-color: #114c8e;
    --secondary-color: #32a8e1;
}

#faq-link:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;

}

#faq-link {
    color: var(--primary-color);
    text-align: left;
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

#faq-link:hover {
    color: var(--secondary-color);
}

.jumbotron {
    background: #bbe4f5;
}

.availability {
    font-size: 24px;
    margin-bottom: 20px;
}

.drawer {
    display: none;
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

#toggle {
    cursor: pointer;
    color: var(--primary-color);
}

h1 {
    font-size: 24px !important;
}

h2 {
    font-size: 18px !important;
}

h3 {
    font-size: 16px !important;
}

h4 {
    font-size: 14px !important;
}

h5 {
    font-size: 12px !important;
}

h6 {
    font-size: 10px !important;
}

h1 {
    text-transform: capitalize;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: white;
    background-color: var(--primary-color);
    padding-top: 5px;
    padding-right: 20px;
    padding-bottom: 5px;
    padding-left: 20px;
    display: inline;
    border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.background-skyblue {
    background: #bbe4f5;
}

.sj-lightblue {
    color: #32a8e1;
}

.sj-darkblue {
    color: #114c8e;
}



.highlight-bg {
    background: linear-gradient(to bottom right, #ffcc00, #ff6600);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.highlight-bg:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, #ffcc00, #ff6600);
    animation: gradientAnimation 5s linear infinite;
    z-index: -1;
}

@keyframes gradientAnimation {
    0% {
        background-position: top left;
    }

    100% {
        background-position: bottom right;
    }
}

@keyframes importanceAnimation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes waveAnimation {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-10%);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(10%);
    }

    100% {
        transform: translateY(0);
    }
}

.animated-text {
    animation: waveAnimation 2s ease-in-out infinite;
}

.spotlight-text {
    background: linear-gradient(to right, #0DBFF5 0%, #014068 20%, #014068 80%, #0DBFF5 100%);
    background-size: 200% 100%;
    background-position: -100% 0;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: spotlightAnimation 5s linear infinite;
    /* border: 2px solid white; */
    /* border-radius: 10%; */
    font-family: 'Roboto', sans-serif;
    padding: 5px;
}

@keyframes spotlightAnimation {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

.fixed-button {
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 999;
    height: 52px;
    width: 100%;
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
        /* Reset the padding for wider viewports */
    }

    .fixed-button {
        position: static;
        display: inline-block;
        margin-left: 10px;
        /* Add any additional styling for inline placement */
    }
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

/* Optional: Set the aspect ratio of the carousel */
.carousel {
    aspect-ratio: 1;
    background-color: #f0f0f0; /* Fallback background if images are slow to load */
}

/* Make readonly/native date input look interactive (not greyed out) */
/* Target readonly state (attribute and pseudoclass) and common Bootstrap readonly selector */
input[type="date"][readonly],
input[type="date"]:read-only,
input.form-control[readonly],
input.form-control:read-only {
    background-color: #ffffff !important;
    color: #212529 !important; /* ensure readable text color */
    cursor: pointer !important;
    opacity: 1 !important;
    border: 1px solid #ced4da !important; /* match normal input border */
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.03) !important;
    -webkit-text-fill-color: #212529 !important; /* fix webkit gray text */
}

/* Also ensure the calendar icon area looks clickable */
input[type="date"][readonly]::-webkit-calendar-picker-indicator,
input[type="date"]:read-only::-webkit-calendar-picker-indicator {
    cursor: pointer !important;
    opacity: 1 !important;
}
