:root {
    --primary: #ff7b25; /* Orange */
    --secondary: #28a745; /* Green */
    --dark: #343a40;
    --light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
}

.sidebar {
    min-height: 100vh;
    background-color: var(--dark);
    color: white;
}

.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    margin-bottom: 5px;
}

.sidebar .nav-link:hover, .sidebar .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.sidebar .nav-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.main-content {
    padding: 20px;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card-header {
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-card .value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-card .label {
    color: #6c757d;
    font-size: 0.9rem;
}

.traffic-indicator {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 5px;
}

.traffic-low { background-color: var(--secondary); }
.traffic-moderate { background-color: #ffc107; }
.traffic-high { background-color: #fd7e14; }
.traffic-extreme { background-color: #dc3545; }

.badge-primary { background-color: var(--primary); }
.btn-primary { background-color: var(--primary); border-color: var(--primary); }
.btn-outline-primary { color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background-color: var(--primary); }

.order-badge {
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
}

.delivery-badge { background-color: #e3f2fd; color: #1976d2; }
.pickup-badge { background-color: #e8f5e9; color: #388e3c; }
.dinein-badge { background-color: #f3e5f5; color: #8e24aa; }

.table-responsive {
    border-radius: 10px;
    overflow: hidden;
}

.table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

.action-btn {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
/* POS System Styles */
.pos-menu-item {
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #dee2e6;
}

.pos-menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#pos-order-items input {
    width: 50px;
    text-align: center;
}

#pos-order-items .btn-sm {
    padding: 0.15rem 0.3rem;
    font-size: 0.7rem;
}