/* Frontend styles for WooCommerce Advanced Units */

/* Shipping specifications tab styling */
.wpau-shipping-specs {
    margin: 2em 0;
    padding: 0;
}

.wpau-spec {
    margin-bottom: 1em;
    padding: 10px 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.wpau-spec:last-child {
    margin-bottom: 0;
}

.wpau-spec-hover {
    background-color: #f0f0f1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.wpau-spec-label {
    font-weight: 700;
    margin-right: 5px;
}

.wpau-spec-value {
    color: #515151;
}

/* Responsive styling */
@media (min-width: 768px) {
    .wpau-shipping-specs {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .wpau-spec {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .wpau-spec {
        margin-bottom: 10px;
    }
}