body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.calculator {
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.display {
    background-color: #222;
    color: #fff;
    padding: 20px;
    text-align: right;
}

.display input {
    width: 100%;
    border: none;
    background-color: #222;
    color: #fff;
    font-size: 2em;
    text-align: right;
}

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

button {
    border: 1px solid #ccc;
    padding: 20px;
    font-size: 1.5em;
    cursor: pointer;
}

button:hover {
    background-color: #ddd;
}

.operator {
    background-color: #f0ad4e;
    color: #fff;
}

.equal {
    background-color: #5cb85c;
    color: #fff;
    grid-column: span 2;
}
