/* Custom CSS for Inventory Management System */

/* Sidebar navigation */
.sidebar {
    min-height: calc(100vh - 56px);
}

/* Card styling */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* Form styling */
.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Table styling */
.table th {
    border-top: none;
    font-weight: 600;
}

/* Badge styling */
.badge-success {
    background-color: #198754;
}

.badge-warning {
    background-color: #ffc107;
    color: #000;
}

.badge-danger {
    background-color: #dc3545;
}

/* Dashboard stats */
.stat-card {
    border-left: 4px solid #0d6efd;
}

.stat-card.bg-success {
    border-left-color: #198754;
}

.stat-card.bg-warning {
    border-left-color: #ffc107;
}

.stat-card.bg-danger {
    border-left-color: #dc3545;
}

.stat-card.bg-info {
    border-left-color: #0dcaf0;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
}