/* --- FOOD ORDER TABLE STYLES --- */
.data-table { width: 100%; border-collapse: collapse; background-color: #111111; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.5); margin-top: 20px; color: white;}
.data-table th, .data-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); }
.data-table th { background-color: #1a1a1a; color: #fbbf24; font-weight: 600; font-size: 0.9rem; letter-spacing: 1px; }
.data-table tr:hover { background-color: rgba(255,255,255,0.02); }

.badge { padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; text-transform: uppercase; }
.badge.pending { background-color: rgba(239, 68, 68, 0.2); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.5); }
.badge.preparing { background-color: rgba(245, 158, 11, 0.2); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.5); }
.badge.delivered { background-color: rgba(16, 185, 129, 0.2); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.5); }

.action-btn { background: #2dd4bf; color: #0a0a0a; border: none; padding: 6px 12px; border-radius: 4px; font-size: 0.8rem; font-weight: bold; cursor: pointer; transition: 0.3s; margin-right: 5px; }
.action-btn:hover { background: #ffffff; }
.action-btn.cancel { background: transparent; color: #94a3b8; border: 1px solid #94a3b8; }
.action-btn.cancel:hover { background: #ef4444; color: #fff; border-color: #ef4444; }