﻿/* ===== MOBILE VAN APP GLOBAL STYLES ===== */

body {
    background: #f5f6fa;
}

.mobile-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px 15px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.2s;
    cursor: pointer;
}

    .mobile-card:active {
        transform: scale(0.96);
    }

.item-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 12px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}
