/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

#container {
    max-width: 600px;
    width: 90%;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

#columns-container {
    display: flex;
    flex-direction: column; /* Alinha os contêineres verticalmente */
    gap: 15px;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #eaf3ff;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.column-header {
    font-weight: bold;
    margin-bottom: 5px;
    color: #007BFF;
}

.column-value {
    color: #333;
}
