.virtual-tour-wrapper {
    position: relative;
    background-color: #000;
    overflow: hidden;
    width: 100%;
}
.virtual-tour-container {
    width: 100%;
    height: 100%;
}
.virtual-tour-error {
    padding: 20px;
    background: #f8d7da;
    color: #721c24;
    text-align: center;
    border-radius: 4px;
}

/* Custom Red Hotspot Navigation */
.custom-red-hotspot {
    width: 30px;
    height: 30px;
    background-color: #e60000;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}
.custom-red-hotspot:hover {
    transform: scale(1.2);
}
.custom-red-hotspot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
}

/* Back to Start Hotspot Button */
.custom-back-btn {
    padding: 8px 16px;
    background-color: #cc0000;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.custom-back-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}
