/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #1c2b4b;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 20px;
}

.game-area {
    width: 60%;
    margin-right: 40px;
    margin-left: 40px;
    padding: 20px;
    border: 2px solid #3b5c89;
    background-color: #1d3b5a;
    border-radius: 8px;
}

.prize-ladder {
    width: 35%;
    text-align:center;
    padding: 20px;
    border: 2px solid #3b5c89;
    background-color: #1d3b5a;
    border-radius: 8px;
}

.Settings {
    width: 35%;
    text-align:center;
    padding: 20px;
    border: 2px solid #3b5c89;
    background-color: #1d3b5a;
    border-radius: 8px;
}
 

.Settings span {

    align-items: center;
    margin-bottom: 10px;
    color: #dbe8f5;
    font-size: 14px;
}

.Settings select {
    padding: 5px;
    border: 1px solid #3b5c89;
    background-color: #2d4a6e;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.Settings select:focus {
    outline: none;
    border-color: #a8c5e5;
    box-shadow: 0 0 5px #a8c5e5;
}

.SelectItem:hover{
    cursor: pointer !important;
    background-color: #4CAF50 !important;
}

h1, h3 {
    text-align: center;
    font-size: 2em;
}

#question {
    font-size: 1.5em;
    margin-bottom: 20px;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    margin: 10px 0;
    width: 100%;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

button:disabled {
    background-color: #dcdcdc;
    cursor: not-allowed;
}

button.lifeline {
    width: 32%;
    display: inline-block;
    margin: 10px 10px 10px 0;
    background-color: #3b5c89;
}

.startgamebtn{
  
    display: inline-block;
    margin: 10px 10px 10px 0;
    background-color: #3b5c89;
}

button.lifeline.disabled {
    background-color: #dcdcdc;
    cursor: not-allowed;
}


button.lifeline i {
    margin-right: 10px;
}

.lifelines {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

ul#prize-ladder {
    list-style-type: none;
    padding: 0;
    font-size: 1.2em;
}

ul#prize-ladder li {
    margin: 10px 0;
}

ul#prize-ladder li.active {
    color: #4CAF50;
}
.answer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates two equal columns */
    gap: 10px; /* Adds spacing between the buttons */
}

.answer-btn {
    padding: 10px;
    font-size: 16px;
}
#question {
    border: 2px solid #3b5c89;
    background-color: #1d3b5a;
    border-radius: 8px;
    padding: 20px; /* Add some space inside the div */
    text-align: center; /* Center the text horizontally */
    margin: 0 auto; /* Center the div itself */
    width: 100%; /* Set the width of the div */
    box-sizing: border-box; /* Include padding and border in the width */
    font-size: 16px; /* Optional: Set a nice font size */
  }
  