.hoverable {
    cursor: pointer;
}

.hoverable:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.svg-container {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    margin: 0 !important;
}

.svg-container img {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
}

.svg-container svg {
    position: absolute;
    top: 0;
    left: 0;
}

.svg-container path,
.svg-container polygon,
.svg-container rect {
    fill: transparent;
    transition: fill 0.3s;
}

.svg-container path:hover,
.svg-container polygon:hover,
.svg-container rect:hover {
    fill: rgba(9, 59, 46, 0.5);
    cursor: pointer;
}

#holder{
    user-select: none;
}

#holder:hover{
    fill:none;
    cursor: auto;
}

.svg-container polygon.sold:hover {
    fill: rgba(255, 0, 0, 0.5);
    cursor: pointer;
}

.svg-container polygon.reserved:hover {
    fill: rgba(255, 255, 0, 0.5);
    cursor: pointer;
}

.floor-nav {
    display: flex;
    flex-direction: column-reverse;
}

.floor-nav .nav-link {
    color: black;
    text-align: center;
}

.floor-nav .nav-link.active {
    color: white;
    background-color: black;
}

.not-available {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}