.custom-alert {
    background-color: #ff7361;
    color: white;
    /* Ensure the text is readable */
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    opacity: 1;
    transition: opacity 3s ease-out;
    /* Smooth fade out over 3 seconds */
}

.fade-out {
    opacity: 0;
}

.services-list {
    display: flex; /* Use flexbox for row layout */
    flex-wrap: wrap; /* Allows wrapping to the next line if needed */
    gap: 10px;
    text-align: center; /* Space between links */
    text-decoration: underline;
    margin-right: 10px;
}

.service-link {
    font-size: 0.6em; /* Smaller text size (adjust as needed) */
    text-decoration: underline; /* Remove underline */
    color: #007bff;
    margin-right: 10px;

     /* Change text color */
}

.service-link:hover {
    text-decoration: underline; /* Underline on hover */
}


.progress-container {
    width: 50%;
    /* Adjust this to control the width of the progress bar container */
    background-color: #fffdfd;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
    margin-bottom: 10px;
    /* Add margin for spacing between progress bars */
}

.progress-bar {
    height: 25px;
    /* Adjust this to control the height of the progress bar line */
    background-color: #ff7361;
    text-align: center;
    color: white;
    line-height: 10px;
    /* Match this to height for vertical centering */
    border-radius: 5px;
}

.votes-container {
    display: flex;
    align-items: center;
}



.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 500px;
    height: 400px;
    padding: 20px;
    background: white !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-radius: 10px;
    display: none;
}

.popup .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 1.5rem;
}

.popup .terms-content {
    margin-top: 20px;
}

.popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}


.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.mySlides {
    display: none;
    text-align: center;
}

.numbertext {
    position: absolute;
    top: 0;
    left: 0;
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
}

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 600px) {
    .mySlides img {
        width: 100%;
        height: auto !important;
    }
}

.bg-light {
    background-color: #f8f9fa !important;
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.fw-bold {
    font-weight: bold !important;
}

.me-1 {
    margin-right: .25rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.mb-2 {
    margin-bottom: .5rem !important;
}

.d-flex.align-items-center i {
    font-size: 1.5rem;
}

.d-flex.align-items-center span {
    font-size: 0.9rem;
    
}
