/* Styles for the floorplan */
.ht-floorplan-svg {
    width: 100%;
    height: auto;
}

/* Styles for pulsing effect */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { fill-opacity: 1; }
    50% { fill-opacity: 0.5; }
    100% { fill-opacity: 1; }
}

/* Modal styles */
.ht-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.ht-modal > div {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.ht-modal button {
    margin: 10px 5px 0 5px;
}
