body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #009E60; /* Verde */
    margin: 0;
}
.container {
    background-color: #FFD700; /* Amarelo */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
}
.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #8B4513;
}
.columns {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
.column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border: 2px solid #8B4513; /* Marrom */
    border-radius: 5px;
    margin: 0 10px;
    background-color: #FFDAB9; /* Bege claro */
    align-items: center;
}
input {
    width: 150px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}
input:focus {
    outline: 2px solid #009E60;
}
.extra-button {
    background-color: #8B4513;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}
.extra-button:hover {
    background-color: #6A2E0F;
}
.left-arrow::before {
    content: "\2190"; /* Unicode para seta para a esquerda */
}
.right-arrow::before {
    content: "\2192"; /* Unicode para seta para a direita */
}