body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f4f6f8;
    font-family: Arial, sans-serif;
}

.calculator {
    background: #2196f3;
    padding: 20px;
    border-radius: 12px;
    width: 260px;
}

#display {
    width: 100%;
    height: 50px;
    font-size: 24px;
    text-align: right;
    margin-bottom: 15px;
    padding: 5px;
    border: none;
    border-radius: 6px;
}

.buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

button {
    height: 45px;
    font-size: 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #1976d2;
    color: white;
}

.equal {
    grid-row: span 2;
    background: #0d47a1;
    color: white;
}

.zero {
    grid-column: span 2;
}
