/**
 * CSS Frontend para OCC Features
 * 
 * @author Brayan Serrano
 * @copyright 2026 OCC Sport
 */

/* Estilos adicionales si se necesitan fuera de la plantilla */
.occ-supplier-orders-container {
    margin: 20px 0;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.occ-order-item {
    animation: fadeInUp 0.3s ease-out;
}

/* Loading spinner si se necesita en el futuro */
.occ-loading {
    text-align: center;
    padding: 20px;
}

.occ-loading::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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