body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}
.game-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    margin-top: 100px;
}
.hidden {
    display: none;
}
.success-message {
    margin: 20px 0;
    padding: 20px;
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    border-radius: 8px;
    text-align: center;
}
.success-image {
    width: 100px;
    height: auto;
    margin-top: 10px;
}
.game-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.seating-section {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.seating-area {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}
.seat {
    width: 80px;
    height: 80px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 5px;
}
.hint-table {
    margin-top: 20px;
    width: 100%;
}
.hint-table table {
    width: 100%;
    border-collapse: collapse;
}
.hint-table th, .hint-table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}
.hint-images {
    display: flex;
    justify-content: center;
    gap: 5px;
}
.hint-thumbnail {
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.animal-selection {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.animal {
    width: 80px;
    height: 80px;
    cursor: pointer;
}
.buttons {
    margin-top: 20px;
}
button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    margin: 5px;
}
button:hover {
    background-color: #0056b3;
}
.disabled {
    opacity: 0.5;
    pointer-events: none;
}



.hints {
    display: flex;
    justify-content: center; /* Ortada hizala */
    gap: 5px; /* Toplar arasındaki boşluk */
}

.hint-ball {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.hint-ball.green {
    background-color: green;
}

.hint-ball.yellow {
    background-color: yellow;
}

.hint-ball.gray {
    background-color: gray;
}
