body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f2f5;
    margin: 0;
}

.calculator {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#display {
    width: 100%;
    height: 50px;
    font-size: 24px;
    text-align: right;
    margin-bottom: 15px;
    padding: 10px;
    box-sizing: border-box; /* Чтобы padding не увеличивал ширину */
    border: none;
    border-radius: 5px;
    background-color: #eee;
}

.buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 колонки */
    gap: 10px;
}

button {
    padding: 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #fff;
    transition: background 0.2s;
}

button:hover {
    background-color: #ddd;
}

button:active {
    background-color: #bbb;
}

.btn-op {
    background-color: #ff9f43;
    color: white;
}

.btn-op:hover {
    background-color: #e58e3c;
}

.btn-red {
    background-color: #ff6b6b;
    color: white;
}

.btn-equal {
    background-color: #2e78cc;
    color: white;
    grid-row: span 2; /* Кнопка равно высокая */
}