/**
 * Module Stock par Taille
 * Styles CSS
 */

.stock-by-taille-container {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.stock-by-taille-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #dee2e6;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.stock-by-taille-title i {
    font-size: 1.2rem;
    color: #28a745;
}

.stock-by-taille-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.stock-by-taille-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 10px 15px;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.stock-by-taille-item:hover {
    border-color: #28a745;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.15);
}

.stock-by-taille-item .size-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.stock-by-taille-item .size-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #28a745;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50%;
}

/* Stock faible (1-2) */
.stock-by-taille-item .size-quantity.low-stock {
    background-color: #ffc107;
    color: #333;
}

/* Stock très faible (1) */
.stock-by-taille-item .size-quantity.very-low-stock {
    background-color: #dc3545;
    color: #fff;
}

.stock-by-taille-total {
    text-align: right;
    font-size: 0.9rem;
    color: #666;
    padding-top: 10px;
    border-top: 1px solid #dee2e6;
}

.stock-by-taille-total strong {
    color: #28a745;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 576px) {
    .stock-by-taille-grid {
        justify-content: center;
    }

    .stock-by-taille-item {
        min-width: 55px;
        padding: 8px 12px;
    }

    .stock-by-taille-total {
        text-align: center;
    }
}
