.forecast-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px;
    /* justify-content: center; */
}

.forecast-item {
    /* background: #f9f9f9; */
    background: var(--card-bg);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 120px;
    box-shadow: var(--shadow);
    color: var(--text-color);
    transition: var(--transition);
}

.forecast-item img {
    width: 50px;
}

.forecast-item p strong {
    color: var(--primary-color);
}

/* Web Scroll Bar */
/* Entire scrollbar */
::-webkit-scrollbar {
    width: 10px;
    /* For vertical scrollbar */
    height: 12px;
    /* For horizontal scrollbar */
}

/* Scrollbar track */
::-webkit-scrollbar-track {
    background-image: linear-gradient(to bottom, #434343 0%, black 100%);
    /* background-blend-mode: screen; */
    /* border-radius: 6px; */
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
    background-image: linear-gradient(to right, rgb(34, 63, 84) 0%, rgb(33, 65, 84) 100%);
    border-radius: 3px;
    /* Rounded corners */
}

/* Scrollbar thumb hover effect */
::-webkit-scrollbar-thumb:hover {
    background-image: linear-gradient(120deg, rgb(63, 134, 146) 0%, rgb(38, 96, 129) 100%);
}

/* Suggestion Lists */
#suggestion-section {
    display: inline-flex;
    /* justify-content: center; */
    position: absolute;
    z-index: 100;
    flex-basis: 500px;
    width: 500px;
    /* Set fixed width */
    max-width: 500px;
    /* Ensure it doesn't exceed 500px */
    left: 50%;
    /* Move to center */
    transform: translateX(-50%);
    /* Adjust position */
}

#countryList {
    /* text-align: start; */
    width: 100%;
    max-width: 500px;
}

ul {
    list-style-type: none;
    /* padding: 0;
    margin: 0; */
    /* background-color: #ffffff; */
    background: var(--card-bg);
    color: var(--text-color);
    box-shadow: var(--shadow);
    /* box-shadow: 0px 0px 5px lightgray; */
    cursor: pointer;
    width: 100%;
    border-radius: 10px;
    text-align: start;
}

li {
    padding: 12px;
}

@media (max-width: 576px) {
    #suggestion-section {
        width: 90%;
    }
}

#openModalBtn {
    display: none;
}

/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image Container */
.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image Styling */
.modal img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    display: block;
    cursor: pointer;
}

/* Close Button (Top-Right of Image) */
.close-btn {
    position: absolute;
    top: -3px;
    right: -3px;
    background: red;
    color: white;
    border: none;
    font-size: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: darkred;
}