/**
 * WooCommerce Shippo Live Rates Frontend Styles
 *
 * @package WooCommerce_Shippo_Live_Rates
 */

/* Shipping method display on checkout */
.wc-shippo-live-rate {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

/* Carrier headers */
.wc-shippo-carrier-header {
    margin: 15px 0 5px !important;
    padding-bottom: 5px !important;
    border-bottom: 1px solid #e0e0e0;
}

.wc-shippo-carrier-header span {
    font-weight: bold;
    font-size: 0.95em;
    color: #333;
}

/* Last item in carrier group */
.wc-shippo-last-in-group {
    margin-bottom: 15px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px dashed #e5e5e5;
}

/* Remove border from last carrier group */
.wc-shippo-last-in-group:last-of-type {
    border-bottom: none;
}

/* Carrier-specific styling */
.wc-shippo-carrier-usps {
    font-weight: bold;
    color: #333366;
}

.wc-shippo-carrier-ups {
    font-weight: bold;
    color: #351c15;
}

.wc-shippo-carrier-fedex {
    font-weight: bold;
    color: #4d148c;
}

/* Ensure uniform font for all shipping methods */
.shipping_method + label {
    font-weight: normal;
}

/* Custom styling for shipping method list items */
ul#shipping_method li {
    margin-bottom: 5px;
}

/* Loading indicator during rate calculation */
.wc-shippo-loading {
    display: inline-block;
    position: relative;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    vertical-align: middle;
}

.wc-shippo-loading:after {
    content: " ";
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #ddd;
    border-top-color: #333;
    animation: wc-shippo-spin 1s linear infinite;
}

@keyframes wc-shippo-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}