/* Admin Panel Custom Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.sidebar {
    background-color: #343a40;
    min-height: 100vh;
}

.sidebar .nav-link {
    color: #ffffff;
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.sidebar .nav-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.3);
}

.sidebar .nav-link.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.sidebar .nav-link i {
    margin-right: 10px;
}

.card {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-header {
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.03);
}

.status-badge-PENDING {
    background-color: #ffc107;
    color: #212529;
}

.status-badge-PROCESSING {
    background-color: #0d6efd;
    color: #fff;
}

.status-badge-COMPLETED {
    background-color: #198754;
    color: #fff;
}

.preview-image {
    max-height: 150px;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    padding: 2px;
    background-color: #f8f9fa;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
}

.btn-icon i {
    margin-right: 5px;
}

.order-card {
    height: 100%;
}

.dashboard-stats .card {
    text-align: center;
    padding: 1rem;
}

.dashboard-stats .display-4 {
    font-weight: 600;
}

.nav-tabs .nav-link {
    font-weight: 500;
}

.nav-tabs .nav-link.active {
    font-weight: 600;
}

.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.modal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
