.delivery-options-label {
    margin-bottom: 10px;
    font-weight: bold;
    display: block;
}

.delivery-options-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
 
.inactive-btn {
    flex: 1;
    padding: 12px 24px;
    font-size: 16px;
    background-color: #6c757d;
    border: 1px solid #6c757d;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.inactive-btn.active {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}
.selected-address-info {
    margin-top: 10px;
    padding: 10px;
    background-color: #e9ecef;
    border-radius: 4px;
    font-size: 14px;
}


.delivery-options-btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #0d6efd;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
}
 
.saved-address-container {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.address-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.edit-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #dc3545;
}

.modal-overlay {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
}

.modal-header {
    display: flex;
    justify-content: flex-end;
}

.address-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.error-message {
    background-color: #ffdddd;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 10px;
    color: #d9534f;
}

.map-container {
    height: 400px;
    width: 100%;
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
}
.loading-spinner {
    width: 100%;
    text-align: center;
    padding: 20px;
    color: #6c757d;
}

/* WooCommerce Shipping Method Styling */
.woocommerce-shipping-methods .shipping-method label,
.woocommerce-shipping-methods .shipping-method .shipping-method-title,
.woocommerce-shipping-fields .shipping-method label,
.woocommerce-checkout #shipping_method label,
.woocommerce-checkout #shipping_method .shipping-method-title {
    font-size: 14px !important;
    font-weight: normal !important;
    line-height: 1.5 !important;
}

.woocommerce-shipping-methods .shipping-method .shipping-method-description,
.woocommerce-checkout #shipping_method .shipping-method-description {
    font-size: 12px !important;
    line-height: 1.4 !important;
}

/* LSA Address Validation Error Styling */
.lsa-address-error,
.checkout-inline-error-message {
    color: #e2401c !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    margin: 5px 0 0 0 !important;
    display: block;
}

.woocommerce-invalid #billing_address_1_field input,
.woocommerce-invalid #billing_address_1_field input:focus {
    border-color: #e2401c !important;
    box-shadow: 0 0 0 1px #e2401c !important;
}

#billing_address_1_field.error input,
#billing_address_1_field.error input:focus {
    border-color: #e2401c !important;
}
