body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    overflow-y: auto; /* Allow the page to scroll naturally */
}

.container {
    text-align: left; /* Align text left */
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%; /* Ensure the container doesn't exceed the viewport width */
    max-width: 800px; /* Set a reasonable max-width */
    margin: 20px auto; /* Center the container */
}

.result-section {
    margin-top: 20px;
    height: auto; /* Let the height expand naturally */
    line-height: 1.2; /* Compact line spacing, with enough room for readability */
    text-align: left; /* Align text to the left */
}

#winnings-list {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    line-height: 1.2; /* Compact spacing */
    text-align: left; /* Align text to the left */
    max-height: 150px; /* Allow scrolling for long winnings list */
    overflow-y: auto;
}
