.wc-ms-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    z-index: 100000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    width: 300px;
    text-align: center;
}

.wc-ms-modal h2 {
    margin-top: 0;
    color: #333;
}

#wc-ms-cep-input {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#wc-ms-submit-cep {
    background: #007cba;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
}

#wc-ms-submit-cep:hover {
    background: #006ba1;
}

.wc-ms-current-cep {
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}