#rr-game {
    font-family: Arial;
    text-align: center;
}

.rr-container {
    display: flex;
    gap: 20px;
}

.rr-map {
    width: 70%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.city {
    background: #4CAF50;
    color: white;
    padding: 30px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}

.city:hover {
    background: #2e7d32;
}

.rr-sidebar {
    width: 30%;
    background: #f4f4f4;
    padding: 15px;
    border-radius: 10px;
}

.player {
    background: white;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
}