html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: sans-serif;
}

#map {
    width: 100%;
    height: 100%;
}

#quiz-panel {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1000;
    background: white;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    min-width: 220px;
}

#quiz-target {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

#quiz-result {
    font-size: 15px;
    min-height: 20px;
}

#quiz-progress,
#quiz-accuracy,
#quiz-result {
    margin-top: 6px;
}

#quiz-buttons {
    margin-top: 10px;
    display: flex;
    gap: 8px;
}

#quiz-restart,
#quiz-back {
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    background: #222;
    color: white;
    cursor: pointer;
}

#quiz-restart:hover,
#quiz-back:hover {
    background: #444;
}

#quiz-timer {
    margin-top: 6px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}