* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.calculator {
    background: #1e293b;
    padding: 20px;
    border-radius: 15px;
    width: 260px;
}

h2 {
    color: white;
    text-align: center;
    margin-bottom: 10px;
}

#display {
    width: 100%;
    height: 50px;
    font-size: 22px;
    text-align: right;
    padding: 10px;
    border-radius: 8px;
    border: none;
    margin-bottom: 15px;

    color: #000000;   /* 🔥 number color (green) */
    background: #889ae6;
}

.buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

button {
    height: 45px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #334155;
    color: white;
}

button:hover {
    background: #475569;
}

.equal {
    grid-row: span 2;
    background: #22c55e;
}

.equal:hover {
    background: #16a34a;
}

.zero {
    grid-column: span 2;
}
