/**
 * Popaperos Delivery - Shipping Styles
 */

/* Shipping methods container */
.popaperos-shipping-methods {
    margin-bottom: 20px;
}

/* Shipping method description */
.shipping-method-description {
    font-size: 0.9em;
    color: #666;
    margin-left: 25px;
    margin-top: 5px;
    font-style: italic;
}

/* Style for selected shipping method */
.shipping_method:checked + label {
    font-weight: bold;
}

/* Free shipping highlight */
.shipping-method-free {
    color: #7eb321;
    font-weight: bold;
}

/* Warning message for postcode input */
.shipping-method-warning {
    color: #ff9800;
    font-weight: bold;
    padding: 5px;
    border-left: 3px solid #ff9800;
}

/* Shipping method unavailable */
.shipping-method-unavailable {
    color: #999;
    text-decoration: line-through;
}

/* Disabled shipping method */
.shipping-method-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
