/* Delivery Boy App Custom Styles */
:root {
    --primary: #16A34A;
    --primary-dark: #15803D;
    --secondary: #F97316;
    --bg-page: #F8FAFC;
    --bg-card: #FFFFFF;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

body {
    background-color: var(--bg-page);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    padding-bottom: 80px; /* Space for bottom nav */
}

.delivery-header {
    background: white;
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    position: sticky;
    top: 0;
    z-index: 100;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 12px 10px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
    z-index: 1000;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.nav-item {
    text-align: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.3s;
}

.nav-item i {
    font-size: 1.2rem;
}

.nav-item.active {
    color: var(--primary);
}

.nav-item.active i {
    transform: translateY(-2px);
}

/* Glassmorphism Cards */
.modern-card {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.stat-box {
    padding: 15px;
    border-radius: 16px;
    text-align: center;
    flex: 1;
}

.stat-box.green { background: #DCFCE7; color: #166534; }
.stat-box.orange { background: #FFEDD5; color: #9A3412; }
.stat-box.blue { background: #DBEAFE; color: #1E40AF; }

.btn-toggle-online {
    background: #E2E8F0;
    border-radius: 50px;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    width: 60px;
    height: 30px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.btn-toggle-online .circle {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    transition: all 0.3s;
}

.btn-toggle-online.active {
    background: var(--primary);
}

.btn-toggle-online.active .circle {
    left: 35px;
}

/* Multi-step Form */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #E2E8F0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    position: relative;
}

.step.active {
    background: var(--primary);
    color: white;
}

.step.done {
    background: var(--primary-dark);
    color: white;
}

/* Animations */
@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.animate-slide {
    animation: slideIn 0.4s ease forwards;
}
