/* Přidat do CSS */
@media screen and (orientation: portrait) {
    /* 1. Zvětšení hlavičky a ovládacích prvků */
    .info-table {
        height: 10.5vh !important;
    }

    .info-table-logo {
        height: 7vh !important;
        margin-left: -0.5vh;
    }

    .info-table-separator {
        font-size: 3vh !important;
        font-weight: 400;
        margin-right: 1.3vh;
        margin-left: 0.7vh;
    }

    .info-table-heading-line1 {
        font-size: 2.7vh;
        line-height: 1.2;
        margin-left: 3vh;
        font-weight: 500;
    }
    
    .info-table-heading-line2 {
        font-size: 1.8vh;
        line-height: 1.2;
        margin-right: 0.5vh;
        margin-left: 3vh;
    }

    /* Úprava velikosti ovládacích tlačítek (vrstvy a galerie)*/
    .layer-controls-toggle, #galleryButton {
        width: 13vh !important;
        height: 5vh !important;
        font-size: 2.5vh !important;
    }

    #galleryButton {
        margin-top: 3vh;
    }

    .layer-controls-list button {
        width: 13vh !important;
        height: 4vh !important;
        font-size: 2vh !important;
    }

    /* Úprava velikost vyhledávání ---------------------------------------- */
    .search-control {
        width: 95vw;
        left: 50%;
        transform: translateX(-50%);
    }

    .search-control input[type="text"] {
        font-size: 2.5vh !important;
        height: 6vh !important;
        width: 70vw !important;
    }

    .search-control button {
        font-size: 2vh !important;
        height: 6vh !important;
        width: 30vw !important;
        color: inherit !important;
        text-decoration: none !important;
    }
    }

    /* 3. Odstranění modré barvy odkazů -----------------------------------*/
    .layer-controls-toggle {
        color: inherit !important;
        text-decoration: none !important;
        display: flex; /* Flexbox pro lepší zarovnání */
        align-items: center; /* Vertikální vycentrování textu */
        justify-content: center; /* Horizontální vycentrování textu */
        text-align: center; /* Zajistí zarovnání textu na střed */
        padding: 0; /* Odstraní případné nepotřebné odsazení */
    }

    #galleryButton {
        color: inherit !important;
        text-decoration: none !important;
    }

    /* 4. Zakázání přiblížení při fokusu */
    input[type="text"] {
        font-size: 16px; /* Kritické pro mobilní zařízení */
    }

/* Zakázání hover efektů na mobilních zařízeních */
@media only screen and (max-width: 1000px) {
    /* Zakázání zobrazení obsahu při hoveru */
    .info-table-content {
        display: none !important;
    }

    /* Odstranění hover efektu u log */
    .info-table-logo:hover {
        transform: none !important; /* Zakáže zoomování */
    }
}