/* Base styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f7f3e9; /* Light beige */
    color: #333;
    overflow: hidden; /* Prevent scrolling */
}

.room-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.view {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease-in-out;
}

.hidden {
    display: none;
    opacity: 0;
}

#room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hotspot styling */
.hotspot {
  cursor: pointer;
}
.hotspot:hover {
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 5;
}
area:hover {
    transform: scale(2);
}

/* Style for the back button */
.back-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    z-index: 10;
}

/* Audio player styles */
.audio-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 8px;
    z-index: 100;
}

#toggle-audio {
    background: none;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
}

.volume-control {
    margin-top: 5px;
}