/* Hide popup by default */
#wcwm-shipping-info-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    max-width: 450px;
    width: 90%;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    text-align: left;
}

/* Remove WooCommerce notice box styling */
.woocommerce-info {
    background: transparent;
    border: none;
    padding: 0;
}

.woocommerce-info::before {
    display: none;
}

/* Headings */
#wcwm-shipping-info-popup h3 {
    margin-top: 0;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
}

#wcwm-shipping-info-popup h4 {
    margin-bottom: 10px;
    font-size: 1.2em;
}

/* Text */
#wcwm-shipping-info-popup p {
    margin: 5px 0;
    font-size: 14px;
}

/* OK Button */
#wcwm-shipping-info-popup #wcwm-popup-button {
    display: block;
    margin: 20px auto 0;
    padding: 8px 20px;
    background-color: #007cba;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

#wcwm-shipping-info-popup #wcwm-popup-button:hover {
    background-color: #005a9c;
}
