/* 
 * Room Navigation Arrows Fix
 * This CSS will position room navigation arrows on the sides of the rooms display
 * Version 1.0.0
 */

/* Position the rooms scroll arrows container */
.rooms-scroll-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
    pointer-events: none;
    z-index: 10;
}

/* Style the arrow buttons */
.scroll-arrow {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 20, 64, 0.8);
    color: var(--secondary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    opacity: 0.8;
    pointer-events: auto;
    z-index: 15;
}

/* Left and right arrow specific styling */
.scroll-arrow.scroll-left {
    margin-left: -10px;
}

.scroll-arrow.scroll-right {
    margin-right: -10px;
}

.scroll-arrow:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-arrow {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .scroll-arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .scroll-arrow.scroll-left {
        margin-left: -5px;
    }
    
    .scroll-arrow.scroll-right {
        margin-right: -5px;
    }
}
