/* Container Styles */
#wc-shipping-estimator {
    border: 1px solid #ddd;
    padding: 20px;
    margin-top: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Heading Style */
#wc-shipping-estimator h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

/* Address Display and Edit Button */
#wc-edit-address {
    margin-top: 15px;
}

#wc-address span {
    font-weight: bold;
    color: #555;
    cursor: pointer;
    text-decoration: underline;
}

#wc-address span:hover {
    color: #0073aa;
}

/* Address Form Styles */
#wc-address-form {
    display: none;
    margin-top: 15px;
}

#wc-address-form label {
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

#wc-address-form input,
#wc-address-form select {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
}

/* Update Button */
#wc-update-address-btn, #wc-cancel-update-btn {
    background-color: var(--theme_color);
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

#wc-cancel-update-btn {
    background-color: #555;
}

#wc-update-address-btn:hover, #wc-cancel-update-btn:hover {
    background-color: var(--theme_color);
}

/* Shipping Information */
#wc-shipping-cost,
#wc-delivery-date {
    margin-top: 15px;
    font-size: 1em;
    color: #555;
}

/* Loading Placeholder Animation */
.loading-placeholder {
    position: relative;
    color: transparent;
}

.loading-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #23252b 25%, #23252bf1 50%, #23252b 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 2px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    #wc-shipping-estimator {
        padding: 15px;
    }
    
    #wc-shipping-estimator h4 {
        font-size: 1.1em;
    }
    
    #wc-update-address-btn, #wc-cancel-update-btn {
        font-size: 0.9em;
    }
}

.available-shipping-methods{
    order: 14;
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
}
.available-shipping-methods li{
    font-size: 17px;
    display: flex;
    justify-content: space-between;
}
.available-shipping-methods li + li{
    margin-top: 1rem;
}