﻿body {
}

.hidden
{
    display:none;
}

.footerCook {
    display: none;
    position: fixed;
    width: 100%;
    bottom: 0px;
    background-color: #f9ff73;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5%;
    z-index: 999999;
    color: #111111;
}

    .footerCook a {
        color: #000000;
        text-decoration: underline;
        font-weight: bold;
    }

.modal-dropdown.dropdown-menu-language-select {
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
}

.top-navbar .navbar-brand {
    margin-top: -15px;
}

/* Stile per le anteprime in overflow (sotto l'immagine principale) */
.room-tabs-gallery-thumbnails-overflow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
}

.room-tabs-gallery-thumb-small {
    flex: 0 0 calc(20% - 8px);
    max-width: calc(20% - 8px);
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

    .room-tabs-gallery-thumb-small:hover {
        opacity: 0.7;
    }

    .room-tabs-gallery-thumb-small img {
        width: 100%;
        height: auto;
        border: 2px solid transparent;
        transition: border-color 0.3s ease;
    }

    .room-tabs-gallery-thumb-small:hover img {
        border-color: #ff6600;
    }

/* Responsive: su schermi più piccoli, mostra 3 anteprime per riga */
@media (max-width: 768px) {
    .room-tabs-gallery-thumb-small {
        flex: 0 0 calc(33.333% - 7px);
        max-width: calc(33.333% - 7px);
    }
}