/**
 * Interactive Floorplan Styles
 */

.interactive-floorplan-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

/* SVG Styles */
.floorplan-svg {
    width: 100%;
    height: auto;
    max-height: 800px;
}

/* Room element styles */
path, polygon, rect {
    transition: all 0.3s ease;
    fill: transparent;
    stroke: transparent;
}

.interactive-room {
    cursor: pointer;
    fill: transparent;
    stroke: transparent;
}

.interactive-room:hover {
    fill: rgba(35, 60, 105, 0.2);
}

/* Tooltip Styles */
#room-tooltip {
    position: fixed;
    font-size: 14px !important;
    z-index: 999999;
    background: #233C69 !important;
    color: white;
    padding: 12px 15px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    pointer-events: auto;
    display: none;
    max-width: 300px;
    line-height: 1.4;
}

/* .room-tooltip .tooltip-content {
    padding: 10px;
    background: #fff;
    border: 1px solid #ccc;
    font-size: 14px;
    max-width: 250px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
} */
.room-tooltip .company-logo img {
    display: block;
    margin-bottom: 8px;
}
.room-tooltip .company-name {
    font-weight: bold;
    margin-bottom: 4px;
}
.room-tooltip .company-address,
.room-tooltip .company-phone,
.room-tooltip .company-email,
.room-tooltip .company-website {
    margin-bottom: 4px;
}


#room-tooltip .room-number {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

#room-tooltip .room-title {
    color: rgba(255, 255, 255, 0.9);
}

/* Slider styles */
.swiffy-slider {
    background: none;
    padding: 0;
}

.slider-container {
    background: none;
}

/* Modern Arrow Navigation */
.slider-nav {
    width: 48px !important;
    height: 48px !important;
    background: none !important;
    border: none !important;
    opacity: 1 !important;
    transition: transform 0.3s ease !important;
}

.slider-nav::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-right: 3px solid #233C69;
    border-bottom: 3px solid #233C69;
    transform: translate(-25%, -50%) rotate(-45deg);
}

.slider-nav.slider-nav-next::after {
    transform: translate(-75%, -50%) rotate(135deg);
}

.slider-nav:hover {
    transform: scale(1.1);
    background: none !important;
}

.slider-nav:active {
    transform: scale(0.95);
}

/* Modern Floor Indicators */
.swiffy-slider .slider-indicators {
    margin-top: 0px;
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    padding-top: 20px;
}

.slider-indicators button {
    background: none !important;
    color: #233C69;
    padding: 10px 20px !important;
    margin: 0 5px;
    border: 2px solid #233C69;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.slider-indicators button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #233C69;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.slider-indicators button:hover::before {
    transform: translateY(0);
}

.slider-indicators button:hover {
    color: white;
}

.slider-indicators button.active {
    background: #233C69 !important;
    color: white;
    box-shadow: 0 4px 12px rgba(35, 60, 105, 0.2);
}