body, html {
    height: 100%;
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #ffffff;
}

#container {
    display: flex;
    height: 100vh;
}

#sidebar {
    width: 400px; 
    background-color: #222;
    color: white;
    padding: 30px;
    box-sizing: border-box;
    box-shadow: 4px 0 15px rgba(0,0,0,0.3);
    z-index: 10;
    overflow-y: auto;
}

h2 {
    font-size: 1.4rem;
    color: #ffffff;
    border-bottom: 2px solid #d22030;
    padding-bottom: 10px;
}

#map {
    flex-grow: 1;
    height: 100%;
}

.location-prompt {
    background-color: #d22030;
    color: white;
    padding: 15px;
    border-radius: 2px;
    font-weight: bold;
    margin: 20px 0;
    text-transform: uppercase;
}

.correct-msg {
    color: #4cd137;
    background: rgba(76, 209, 55, 0.1);
    padding: 10px;
    border-left: 5px solid #4cd137;
    margin-bottom: 8px;
}

.wrong-msg {
    color: #e84118;
    background: rgba(232, 65, 24, 0.1);
    padding: 10px;
    border-left: 5px solid #e84118;
    margin-bottom: 8px;
}

#reset-btn {
    background-color: #d22030;
    color: white;
    border: 2px solid #d22030;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

#reset-btn:hover {
    background-color: transparent;
    color: #d22030;
}

#score-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    border-top: 1px solid #444;
}

#score-list li {
    padding: 12px 0;
    border-bottom: 1px solid #444;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #ccc;
}