body {
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: bold;
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.table th {
    border-top: none;
    font-weight: 600;
}

.badge-stock-bajo {
    background-color: #dc3545;
}

.badge-stock-medio {
    background-color: #ffc107;
    color: #000;
}

.badge-stock-alto {
    background-color: #198754;
}

.alert-auto-close {
    animation: fadeOut 0.5s ease-in 4s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        display: none;
    }
}

.producto-item {
    cursor: pointer;
    transition: background-color 0.2s;
}

.producto-item:hover {
    background-color: #f8f9fa;
}

.carrito-item {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}