body { 
    background-color: #f8f9fa;
    color: #333;
}

.navbar-brand { 
    font-weight: bold; 
}

/* Amélioration du contraste pour l'extérieur */
.btn-lg { 
    padding: 1rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    transition: background-color 0.3s ease;
}

.form-control-lg { 
    border: 2px solid #dee2e6; 
    border-radius: 0.3rem;
    padding: 0.75rem;
    font-size: 1.25rem;
}

/* Espacement entre les cartes empilées sur mobile */
    @media (max-width: 767.98px) {
        .inventory-grid .col {
            margin-bottom: 1.5rem; /* Espace entre les cartes */
        }
        
        .inventory-grid .card {
            border-left: 5px solid #0d6efd !important; /* Bordure colorée pour bien distinguer l'item */
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; /* Ombre plus forte */
        }
    }

    /* Style pour les labels et inputs */
    .inventory-field-label {
        display: block;
        font-weight: bold;
        margin-bottom: 0.25rem;
    }
