svg {
    opacity: 0.8;
    width: 500px;
}

svg path {
    transition: fill 0.3s ease;
}

svg path:hover {
    fill: #4b61d1;
    cursor: pointer;
}

.selected {
    fill: #4b61d1;
}