body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f0f0f0;
    text-align: center;
}

input {
    width: 150px;
    height: 38px;
}

header h1 {
    font-size: 2.5em;
    margin: 20px 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li button {
    text-decoration: none;
    font-size: 1.2em;
    color: #000;
    padding: 5px 10px;
    border: 1px solid #000;
    margin-top: -30px;
}

.game-actions {
    margin: 20px 0;
}

button {
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 0;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    margin: 10px;
    display: inline-block;
}

button:hover {
    background-color: #e9e9e9;
}

footer {
    font-size: 0.8em;
    margin-top: 30px;
}

@media (max-width: 600px) {
    nav ul li {
        display: block;
        margin: 5px 0;
    }
}


.modal-background {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */

    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    overflow:auto;
}
.rulesModal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    height: 40%;
    overflow:auto;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.half {
    flex: 1;
}
.green {
    background-color: #fff;
}
.red {
    background-color: #fff;
}

#circle {
    position: relative;
    width: 500px;
    height: 500px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: start;
    justify-content: center;
    margin-bottom: 20px;
    margin: 0 auto;
    margin-top: 0px;
}



.circle-info {
    text-align: center;
    margin-top: 100px;
}

.seat {
    width: 200px;
    height: 90px;
    border: 1px solid #000;
    display: flex;
    align-items:center;
    justify-content: center;
    text-align: center;
    margin: 0 30px;

}
.ribbon {
    position: relative;
    left: 120px;
    top: -30px;
    font-size: 20px;
    color: red;
}


.ribbon-left{
    position: relative;
    left: -50px;
    top: -30px;
    font-size: 20px;
    color: red;
}


.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65vh;
}
.flex-side {
    display: flex;
    flex-direction: column;
    justify-content: space-around; /* Distribute boxes vertically */
    height: 500px; /* Match height of central circle */
}

#hiddenParagraph {
    display: none;
}

.start-game-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.start-game-button:hover
.start-game-button:focus{
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.dots {
    text-align: center;
}
.dot {
    height: 20px;
    width: 20px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.checkboxes {
    margin-bottom: 10px;
}
.checkboxes span {
    margin-right: 10px;
}