body {
    background-color: #f4f6f9;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding-bottom: 24px;
}

.app-container {
    max-width: 480px;
    margin: 0 auto;
    background-color: var(--bg-main);
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
}
.app-header {
    background-color: var(--bg-header);
    padding: 16px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
}

.btn-menu-card {
    background-color: #f4efe4;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-green);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}
.btn-menu-card:active {
    transform: scale(0.96);
}
.menu-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-top: 12px;
    border: 1px solid rgba(0,0,0,0.05);
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}
.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 600;
}
.menu-icon-wrapper {
    width: 44px;
    height: 44px;
    background-color: #f0f7f4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* Profil Compact */
.profile-card {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: white;
    border-radius: 16px;
}

/* Styling Card Bulan Versi Mobile */
.card-month {
    border: none;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.card-lunas {
    border-left: 4px solid #198754;
}
.card-belum {
    border-left: 4px solid #dc3545;
}

.badge-status {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35em 0.65em;
    border-radius: 50rem;
}

/* Touch-friendly Button */
.btn-mobile {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 10px;
    font-weight: 600;
}