/* Mobile-first responsive styles */
body {
    padding-top: 56px;
}

@media (min-width: 768px) {
    body {
        padding-top: 72px;
    }
}

/* Form styles */
.form-control, .form-select {
    margin-bottom: 1rem;
}

/* Card styles */
.card {
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Table styles */
.table-responsive {
    overflow-x: auto;
}

/* Button styles */
.btn {
    margin: 0.25rem;
}

/* Custom utility classes */
.mh-80 {
    min-height: 80vh;
}

/* Order status badges */
.badge-order-placed {
    background-color: #6c757d;
}

.badge-in-progress {
    background-color: #fd7e14;
}

.badge-dispatched {
    background-color: #0dcaf0;
}

.badge-delivered {
    background-color: #198754;
}