body {
    font-family: Cereal, Circular, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif !important;;
}

.custom-search-btn {
    background-color: #1c1c3a;
    /* Custom button color */
    border-color: #1c1c3a;
    /* Custom border color if needed */
}

.custom-search-btn:hover {
    background-color: #2e2e5a;
    /* Slightly darker shade for hover */
    border-color: #2e2e5a;
    /* Adjust border color on hover if needed */
}

.search-form-container {
    position: relative;
    margin: 0 auto;
    /* This centers the element horizontally */
    width: auto;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/* Media query for screens with a max width of 768px */
@media (max-width: 768px) {
    .search-form-container .form-floating {
        padding-right: 10px;
        /* Adjust padding for smaller screens */
        padding-left: 10px;
    }

    .search-form-container .form-control {
        font-size: 14px;
        /* Smaller font size for mobile */
    }

    .search-form-container .form-floating {
        margin-bottom: 10px;
        /* Add some space between fields */
    }

    .custom-search-btn {
        padding: 5px 10px;
        /* Adjust button size */
        font-size: 14px;
        /* Smaller text on the button */
    }
}

.text-info {
    color: #6b82ff !important;
}

#guestButton {
    background-color: #ffffff;
    /* White background */
    color: #212529;
    /* Similar to default form control text color */
    border: 1px solid #ced4da;
    /* Similar to default form control border */
    border-radius: 0.25rem;
    /* Rounded corners like form controls */
    padding: 0.375rem 0.75rem;
    /* Similar padding to form controls */
    font-size: 1rem;
    /* Match font size of form controls */
    line-height: 1.5;
    /* Line height similar to form controls */
    height: 58px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    /* Smooth transition for focus */
}

.carousel-image {
    width: 100%;
    /* Makes the image responsive */
    height: 200px;
    /* Example fixed height, adjust as needed */
    object-fit: cover;
    /* Ensures the image covers the area, can be adjusted */
    aspect-ratio: 1 / 1;
    /* Ensures the image stays square */
}


.card-title {
    font-size: 14px;
    /* Adjust the font size as needed */
}

.margin-bottom-custom {
    margin-bottom: 16px; /* Adjust this value as needed to match the main image's height */
}

.rounded-corners {
    border-radius: 0.25rem; /* Adjust the radius as needed */
}

/* Footer styles */
.footer {
    align-items: center;
    position: fixed;
    height: 60px;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
}
.footer .row {
    width: 95%;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
}
.footer .col, .footer .col a {
    color: #1c1c3a;
    text-decoration: none;
    font-size: 16px; /* Default font size */
}
.footer .col span {
    color: gray;
}

/* Media query for screens smaller than 600px */
@media (max-width: 600px) {
    .footer .col, .footer .col a {
        font-size: 14px; /* Smaller font size */
    }
}

.card {
    border: none !important;
}

#card-errors {
    color: #fa755a;
}

/* Base style for larger screens */
.btn-primary {
    padding: 0.375rem 0.75rem; /* Default padding */
    font-size: 1rem; /* Default font size */
}

/* Smaller screens: Less than 768px */
@media (max-width: 1200px) {
    .btn-primary {
        padding: 0.25rem 0.5rem; /* Smaller padding */
        font-size: 0.875rem; /* Smaller font size */
    }
}

/* Even smaller screens: Less than 576px */
@media (max-width: 1000px) {
    .btn-primary {
        padding: 0.2rem 0.4rem; /* Even smaller padding */
        font-size: 0.75rem; /* Even smaller font size */
    }
}

.image-fixed-height {
    height: 200px; /* Example height, adjust as needed */
    object-fit: cover;
    width: 100%; /* Ensures the image is responsive and fills the width of its container */
}

.image-fixed-heightx2 {
    height: 415px; /* Example height, adjust as needed */
    object-fit: cover;
    width: 100%; /* Ensures the image is responsive and fills the width of its container */
}

/*for filter
/* Base styles */
.filter-form {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.filter-form > div {
    border: 1px solid;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .filter-form {
        flex-direction: column;
        align-items: stretch; /* Ensure elements stretch to full width */
    }

    .filter-form > div {
        flex-direction: column;
        gap: 5px; /* Reduce gap for a more compact layout */
    }

    .filter-form select, .filter-form input, .filter-form button {
        width: 100%; /* Make inputs and button take full width */
    }
}

/*checkmark/info css*/
#confirmation-container {
    display: none;
    text-align: center;
    width: 100%;
}

#confirmation-text {
    padding: 10px;
    word-wrap: break-word;
}


