body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #f0f0f0;
}
.floating-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25435c;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.fab:hover {
    background-color: #1c3246;
}
.fab.open {
    transform: rotate(45deg);
}
.menu-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}
.menu-window.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.menu-header {
    display: flex;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
}
.menu-header-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}
.menu-header-title {
    font-size: 18px;
    font-weight: bold;
    margin-right: auto;
}
.menu-header-room {
    font-size: 14px;
    color: #666;
}
.tab-buttons {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}
.tab-button {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #666;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.tab-button.active {
    background-color: #f0f0f0;
    color: #25435c;
}
.tab-content {
    padding: 16px;
    max-height: 50vh;
    overflow-y: auto;
}
.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
}
.toggle {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-right: 8px;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}
.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .toggle-slider {
    background-color: #25435c;
}
input:checked + .toggle-slider:before {
    transform: translateX(26px);
}
.slider {
    width: 100%;
    margin-bottom: 16px;
}
.slider-label {
    display: flex;
    margin-bottom: 8px;
    justify-content: space-between;
    align-items: center;
}

.slider > input{
    width: 100%;
}

.slider-input {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #25435c;
    cursor: pointer;
}

.slider-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #25435c;
    cursor: pointer;
}

.slider-input::-webkit-slider-runnable-track {
    background: #25435c;
    border-radius: 5px;
}

.slider-input::-moz-range-track {
    background: #25435c;
    border-radius: 5px;
}
.full-width-button {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    background-color: #25435c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.full-width-button:hover {
    background-color: #1c3246;
}
.radio-group {
    margin-bottom: 16px;
}
.radio-group-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
.radio-option {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.radio-option input[type="radio"] {
    margin-right: 8px;
}
.radio-option input[type="radio"]:checked + label {
    color: #25435c;
}

.a-enter-vr-button, .a-enter-ar-button {
    right: 100px;
}

.menu-content-external {
    padding: 50px;
    max-width: 400px;
    margin: 0 auto;
}