/* Custom styles for Orders Management System */

/* Navigation */
.navbar-brand {
    font-weight: 600;
}

/* Cards */
.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);
}

/* Stats cards */
.card.bg-primary,
.card.bg-warning,
.card.bg-info,
.card.bg-success {
    border: none;
}

/* Tables */
.table th {
    border-top: none;
    font-weight: 600;
    color: #495057;
}

/* Buttons */
.btn {
    border-radius: 0.375rem;
}

/* Flash messages */
.alert {
    border-radius: 0.375rem;
}

/* Footer */
footer {
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }
    
    .card-body .row .col-md-4 {
        margin-bottom: 1rem;
    }
}