/* map_view.css */
#map {
    width: 300px;
    height: 200px;
    transition: width 0.3s, height 0.3s;
    cursor: pointer;
    border: 2px solid #ccc;
    border-radius: 8px;
}

/* Expanded map size */
#map.expanded {
    width: 600px;
    height: 400px;
}
