* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Hind Siliguri', sans-serif; background: #f8fafc; color: #1e293b; }
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.btn-primary { background: #f97316; color: white; padding: 12px 24px; border: none; border-radius: 8px; cursor: pointer; font-weight: 600; }
.btn-outline { background: transparent; border: 2px solid #f97316; color: #f97316; padding: 10px 20px; border-radius: 8px; }
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
.modal-content { background: white; margin: 10% auto; width: 400px; padding: 30px; border-radius: 16px; }
.auth-form { display: none; }
.auth-form.active { display: block; }
.navbar { display: flex; justify-content: space-between; padding: 20px; background: white; }
.dashboard-wrapper { display: flex; min-height: 100vh; }
.sidebar { width: 260px; background: #1e293b; color: white; padding: 20px; }
.sidebar a { color: #cbd5e1; display: block; padding: 12px; text-decoration: none; }
.main-content { flex: 1; padding: 30px; }
.stat-card { background: white; padding: 20px; border-radius: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.ride-card { background: white; border-radius: 12px; padding: 16px; margin-bottom: 12px; border-left: 4px solid #f97316; }
.btn-small { padding: 6px 12px; font-size: 0.875rem; background: #f97316; color: white; border: none; border-radius: 6px; }