body {
    background: #f3f6fb;
    font-family: Tahoma, Arial, sans-serif;
    color: #263238;
}

.app-navbar {
    background: linear-gradient(135deg, #075985, #0e7490);
    box-shadow: 0 3px 12px rgba(0,0,0,.15);
}

.login-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #075985, #06b6d4);
}

.login-card {
    background: white;
    width: 420px;
    max-width: 92%;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,.2);
}

.login-card h3 {
    color: #075985;
    text-align: center;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.page-title {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 14px rgba(0,0,0,.07);
    text-align: center;
}

.stat-card span {
    display: block;
    color: #64748b;
    margin-bottom: 10px;
}

.stat-card strong {
    font-size: 28px;
    color: #075985;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.menu-button {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    color: white;
    background: linear-gradient(135deg, #0284c7, #0e7490);
    border-radius: 15px;
    text-decoration: none;
    font-size: 18px;
    transition: .2s;
}

.menu-button:hover {
    color: white;
    transform: translateY(-3px);
}

.menu-button.danger {
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

@media (max-width: 700px) {
    .form-row {
        grid-template-columns: 120px 1fr;
        font-size: 13px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-button {
        min-height: 70px;
        font-size: 15px;
        text-align: center;
        padding: 10px;
    }
}

@media print {
    .app-navbar,
    .no-print {
        display: none !important;
    }

    body {
        background: white;
    }
}
