body {
    background-color: #6d81be;
    color: #3e5384;
    font-family: Arial, sans-serif;
}

.container {
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    max-width: 600px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 2px solid white;
    padding: 8px;
}

th {
    background-color: #6d81be;
    color: white;
}
.container {
.container {
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    max-width: 600px;
}

.center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* Add some margin between headline and other elements */
}
 .container {
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Transition opacity over 1 second with ease-in-out timing function */
}

.container.show {
    opacity: 1; /* When the 'show' class is added, opacity is set to 1 */
}
/* Adjusting the submit button */
button {
    padding: 12px 24px; /* Increase padding for larger size */
    font-size: 16px; /* Increase font size */
    border: none;
    border-radius: 6px;
    background-color: #6d81be;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Adjusting the submit button on hover */
button:hover {
    background-color: #5c6fa3; /* Darken the background color on hover */
}
.button-container {
    display: flex;
    justify-content: center; /* Center the button horizontally */
    align-items: center; /* Center the button vertically */
    margin-top: 20px; /* Add some top margin */
}
.setup {
    text-align: center;
    margin-bottom: 20px; /* Add some bottom margin for spacing */
}

.setup input[type="number"] {
    width: 200px; /* Increase the width */
    height: 40px; /* Increase the height */
    border: 2px solid #6d81be; /* Add border */
    border-radius: 8px; /* Add border radius */
    background-color: white; /* Set background color to white */
    font-size: 16px; /* Adjust font size */
    padding: 8px; /* Add padding */
}

.setup input[type="number"]:focus {
    outline: none; /* Remove default focus outline */
    border-color: #5c6fa3; /* Change border color on focus */
}
table, th, td {
    border: 2px solid white;
    padding: 8px;
    text-align: center; /* Center align content within table cells */
}
.button-container {
    display: flex;
    justify-content: center; /* Center the button horizontally */
    align-items: center; /* Center the button vertically */
    margin-top: 40px; /* Increase top margin to move the button down */
}

#colorSubmitBtn {
    padding: 12px 24px; /* Increase padding for larger size */
    font-size: 16px; /* Increase font size */
    border: none;
    border-radius: 6px;
    background-color: #6d81be;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#colorSubmitBtn:hover {
    background-color: #5c6fa3; /* Darken the background color on hover */
}
 /* Center all buttons horizontally */
button {
    display: block; /* Ensure buttons take full width */
    margin: 0 auto; /* Center horizontally */
}
/* Center all buttons horizontally and add space above */
button {
    display: block; /* Ensure buttons take full width */
    margin: 10px auto 0; /* Center horizontally and add space above */
}
.confetti {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    animation: confetti-fall 5s ease-out;
}

@keyframes confetti-fall {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, 100vh) rotate(720deg); }
}

.confetti p {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.confetti img {
    display: block;
    margin: 0 auto;
}
  #finishGameBtn {
    display: block;
    margin: 20px auto; /* Adjust margin as needed */
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    background-color: #6d81be;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Style for all buttons */
button, #finishGameBtn {
    display: block;
    margin: 20px auto;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    background-color: #6d81be;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect for all buttons */
button:hover, #finishGameBtn:hover {
    background-color: #5c6fa3;
}
/* Button styling */
button#finishGameBtn {
    display: block;
    margin: 20px auto;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    background-color: #6d81be;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect for the button */
button#finishGameBtn:hover {
    background-color: #5c6fa3;
}