.popup-country-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.3s;
}

.popup-country-overlay.hidden {
    visibility: hidden;
    opacity: 0;
}

.popup-country-container {
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    animation: popup-country-fadeIn 0.5s ease;
}

.popup-country-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.popup-country-title {
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    letter-spacing: 12px;
}

.popup-country-text {
    margin-bottom: 20px;
}

.popup-country-select {
    /* width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    font-size: 16px;
    color: #555; */

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/chevron-down-black.svg);
    background-position: calc(100% - 20px);
    background-repeat: no-repeat;
    background-size: 15px;
    font-family: "Inter";
    font-size: 18px;
    letter-spacing: 2px;
    color: #000;
    font-weight: 300;
    height: 50px;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.popup-country-button {
    width: 100%;
}

@keyframes popup-country-fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}