:root {
    --bg-white: #ffffff;
    /* အဖြူရောင် Background */
    --neon-green: #2ecc71;
    /* ပိုရင့်ပြီး သန့်တဲ့ အစိမ်းရောင် */
    --text-dark: #333333;
    /* စာသားအတွက် အနက်ရောင် */
    --gray-light: #f4f4f4;
    /* Input box နောက်ခံအတွက် */
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
}

/* Input Fields */
input {
    width: 85%;
    padding: 15px;
    margin: 10px 0;
    border: 2px solid #ddd;
    /* အဖြူရောင်ပေါ်မှာ ပေါ်လွင်အောင် */
    background: var(--gray-light);
    color: var(--text-dark);
    border-radius: 12px;
    outline: none;
}

input:focus {
    border-color: var(--neon-green);
    /* Focus ရောက်ရင် အစိမ်းရောင်တောက်မယ် */
}

/* Button */
button {
    width: 90%;
    padding: 15px;
    background-color: var(--neon-green);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(46, 204, 113, 0.3);
    /* အစိမ်းရောင်အရိပ် */
}

/* Dashboard Bottom Navigation */
.nav-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 70px;
    background: var(--bg-white);
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

h1 {
    color: var(--neon-green);
}