/* Inventory System Styles */

body {
    background-color: #f5f7fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.card {
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
}

.bg-primary .card-title,
.bg-success .card-title,
.bg-warning .card-title,
.bg-info .card-title {
    font-size: 0.9rem;
    opacity: 0.9;
}

.bg-primary h2,
.bg-success h2,
.bg-warning h2,
.bg-info h2 {
    font-weight: 700;
}

.table > thead > tr > th {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn {
    border-radius: 6px;
    font-weight: 500;
}

.btn-lg {
    border-radius: 10px;
}

.alert {
    border: none;
    border-radius: 8px;
}

.badge {
    font-weight: 500;
    padding: 5px 10px;
}

/* Print styles */
@media print {
    .navbar, .btn, form, .alert {
        display: none !important;
    }
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    body {
        background: white;
    }
}

/* Autocomplete product search */
.input-group .product-name-display {
    background: #e8f5e9;
    font-weight: 600;
    min-width: 60px;
}

/* Dashboard quick links */
.row.mt-3 .btn-lg {
    padding: 20px;
    font-size: 1.1rem;
}

/* Responsive tables */
.table-responsive {
    border-radius: 8px;
}
