body {
    background: #fdd835 !important; /* Color de fondo naranja */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: transparent;
    padding: 40px;
}

.calculator {
    background: #fff; /* Fondo blanco para la calculadora */
    border-radius: 10px;
    min-width: 450px;
    height: auto;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Add a subtle shadow */
}

.display {
    background: #f0f0f0; /* Fondo gris claro para la pantalla */
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    text-align: right;
}

.help{
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    height: 1.75rem;
}

.percen{
    font-size: 80%;
    height: 3.65rem;
}

input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 24px;
}

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

/* Estilo para los botones de la calculadora, debes agregar más estilos según tus necesidades */
button {
    background: #007bff; /* Color de fondo azul */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    background: #0056b3; /* Color de fondo azul más oscuro al pasar el ratón */
}
