
/* DIMHOTELS – Mobile-specific layout overrides */
@media (max-width: 767px) {
    .navbar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
    }

    .dimhotels-claim {
        display: inline-block;
        font-size: 10px;
        line-height: 1.1;
        padding-left: 6px;
        white-space: nowrap;
    }

    @media (max-width: 767px) {
        .navbar-header {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-wrap: nowrap;
        }

        .navbar-toggle {
            order: 2;
            margin-left: auto;
            margin-right: 0;
            flex-shrink: 0;
        }

        .navbar-brand {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 5px;
            flex-shrink: 1;
            margin-left: 8px; /* Sposta il blocco più a sinistra */
            max-width: calc(100% - 50px);
        }

            .navbar-brand img {
                height: 48px;
                flex-shrink: 0;
            }

        .dimhotels-claim {
            display: block;
            font-size: 11px;
            line-height: 1.1;
            white-space: nowrap;
        }
    }
}
