/* Custom CSS for Inventory Management System */

/* Sidebar styling */
.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);
}

/* Table styling */
.table th {
    border-top: none;
}

/* Form styling */
.form-control:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Button styling */
.btn {
    border-radius: 0.25rem;
}

/* Badge styling */
.badge {
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .sidebar {
        min-height: auto;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
}