


.wc-country-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-country-modal.hidden {
    display: none !important;
}

.wc-country-modal__box {
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.wc-country-modal__body {
    margin: 1.5rem 0;
}

.wc-country-modal__body select {
    width: 100%;
    padding: 8px;
}

.wc-country-lock-msg {
    color: #d63638;
    font-weight: 500;
    background: #f8ebea;
    padding: 12px;
    border-radius: 4px;
    border-left: 4px solid #d63638;
}

.wc-country-modal__footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

body.wc-country-modal-open {
    overflow: hidden;
}