body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d7e9f7; /* Soft blue background */
    font-family: 'Arial', sans-serif;
}

#gameContainer {
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
}

#clickArea {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

#clickArea img {
    width: 200px; /* Adjust based on actual image size */
    height: auto;
    border: 2px solid #004a7c; /* Dark blue border */
    border-radius: 10px;
}

#clickCount {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2em;
    pointer-events: none;
}

#infoPanel {
    margin-top: 20px;
    text-align: left;
}

button {
    background-color: #22a6b3; /* Button color */
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #3bcdd4; /* Button hover color */
}

button:active {
    background-color: #1e8c97; /* Button active color */
}

button:focus {
    outline: none;
}
#commentSection {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 250px;
    background-color: #f3f3f3;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
    z-index: 1000;
}

#commentsContainer {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
}

#nameInput, #commentInput {
    width: 100%;
    padding: 5px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#commentInput {
    height: 60px;
    resize: none;
}
