/* Base Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

h1, h2 {
    color: #333;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Map Styles */
#map {
    max-width: 100%;
    height: auto;
    border: 1px solid #000;
    margin-bottom: 20px;
}

/* Options Styles */
#options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 10px;
    margin-bottom: 20px;
}

#options button {
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

#options button.correct {
    background-color: #28a745;
}

#options button.incorrect {
    background-color: #dc3545;
}

#options button:hover {
    opacity: 0.8;
}

/* Score and Message Styles */
#score, #message {
    margin-bottom: 20px;
}

#score {
    font-size: 18px;
    font-weight: bold;
}

#message {
    font-size: 16px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 4px;
    padding: 10px;
}

/* Flag Icon Styles */
.flag-icon {
    width: 30px;
    height: 20px;
    margin-right: 10px;
}

.option-container {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #map {
        height: 300px; /* Adjust height for smaller screens */
    }

    #options button {
        font-size: 12px;
    }

    .flag-icon {
        width: 20px;
        height: 15px;
    }
}

@media screen and (max-width: 480px) {
    body {
        padding: 10px;
    }

    #options {
        grid-template-columns: 1fr;
    }
}


#map {
    width: 600px;
    height: 400px;
    border: 1px solid #000;
    margin-bottom: 20px;
}

#guessArea {
    margin-bottom: 20px;
}

#guessArea input[type="text"] {
    padding: 5px;
    margin-right: 10px;
}

#guessArea button {
    padding: 5px 10px;
}

#map {
    width: 600px;
    height: 400px;
    border: 1px solid #000;
    margin-bottom: 20px;
}

#options {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#options button {
    padding: 10px 15px;
    margin: 5px;
    background-color: #007bff; /* Blue background */
    color: white; /* White text */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#options button.correct {
    background-color: #28a745; /* Green background for correct answer */
}

#options button.incorrect {
    background-color: #dc3545; /* Red background for incorrect answer */
}

#options button:hover {
background-color: #45a049; /* Darker green background on hover */
}
#score {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    }
    
    #message {
    font-size: 18px;
    color: #333;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 4px;
    margin-bottom: 20px;
    }    

    .flag-icon {
        width: 30px; /* Adjust size as needed */
        height: 20px; /* Adjust size as needed */
        margin-right: 10px;
    }
    
    .option-container {
        display: flex;
        align-items: center;
        margin-bottom: 5px;
    }
    