:root {
    --p-primary: #2F80ED;       /* Biru Lembut */
    --p-secondary: #6FCF97;     /* Hijau Lembut */
    --p-bg: #F7FAFC;            /* Putih Kebiruan */
    --p-text-dark: #1F2937;     /* Abu Gelap */
    --p-text-muted: #6B7280;    /* Abu Sedang */
    --p-amber: #F2C94C;         /* Amber Lembut untuk Istirahat */
    --p-danger: #EB5757;        /* Merah Lembut untuk Hentikan Sesi */
}

body {
    background-color: var(--p-bg);
    color: var(--p-text-dark);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 19px; /* Standar teks utama agar terbaca jelas */
    line-height: 1.5;
    padding-bottom: 120px; /* Ruang aman agar tidak tertabrak footer bar */
}

/* Tipografi Hierarchy */
h1, .judul-layar { font-size: 24px; font-weight: 700; color: var(--p-text-dark); }
h2, .sub-judul { font-size: 20px; font-weight: 600; }
.text-bantuan { font-size: 16px; color: var(--p-text-muted); }

/* Tombol Aksesibel Pasien ICCU */
.btn-pasien {
    min-height: 52px; /* Tinggi minimum sesuai instruksi layout */
    font-size: 19px;
    font-weight: 600;
    border-radius: 12px;
}

.btn-number-large {
    width: 65px;
    height: 65px;
    font-size: 22px;
    font-weight: bold;
    margin: 6px;
    border-radius: 14px;
    transition: all 0.2s ease;
}

.card-edukasi {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}