.quiz-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 600px;
    margin: auto;
    position: relative;
}

#map {
    height: 450px;
    width: 100%;
    border-radius: 10px;
    margin: 10px 0;
    position: relative;
    z-index: 1;
}

.result, .score, .timer {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.timer {
    color: red;
    display: none;
}

button, input {
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 80%;
    max-width: 300px;
}

button {
    background-color: #ff4d4d;
    color: white;
    cursor: pointer;
}

    button:hover {
        background-color: #cc0000;
    }

#quiz-content {
    display: none;
}
