.menu{
    .navbar {
        background-color: #24418e;
    }
    .nav-item:hover {
        a {
            color: #29abe2 !important;
            background-color: unset !important;
            border: unset !important;
        }
    }
    .navbar-nav .nav-item {
        border: none; /* Odstranění border z <li> */
    }

    .navbar-nav .nav-link {
        border: none; /* Odstranění border z <a> */
        box-shadow: none; /* Odstranění případných box-shadow */
    }

    .navbar-nav .nav-link:focus {
        outline: none; /* Odstranění outline při zaměření */
    }
    .navbar-nav .nav-link {
        color: #fff;
        display: inline-block;
        padding: 0 5px;
        line-height: 66px;
        transition-property: all .2s linear 0;
        -moz-transition: all .2s linear 0;
        -webkit-transition: all .2s linear 0;
        -o-transition: all .2s linear 0;
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .navbar-nav .nav-link:hover {
        color: #ccc; /* Volitelně změna barvy při hoveru */
    }

    /* Zajistíme zpětnou kompatibilitu pro starší prohlížeče */
    .navbar-nav .nav-link {
        -moz-transition: all 0.2s linear;
        -webkit-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
    }
    .navbar-brand {
        color: #fff;
        display: inline-block;
        padding: 0 5px;
        line-height: 66px;
        transition-property: all .2s linear 0;
        -moz-transition: all .2s linear 0;
        -webkit-transition: all .2s linear 0;
        -o-transition: all .2s linear 0;
        font-size: 24px;
        text-transform: uppercase;
        font-weight: 800;
    }
}
body {
    padding-top: 100px;
    padding-bottom: 50px;
    background: center top #eee no-repeat;
}

#sideMenu {
    position: fixed;
    top: 60px; /* Výška top menu */
    left: 0;
    width: 200px;
    height: 100%;
    background-color: #333;
    z-index: 999;
    padding-top: 20px;

}
@media (min-width: 767px) {
    .logged {
        padding-left: 200px;
    }
}
#sideMenu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#sideMenu ul li {
    text-align: left;
    padding: 10px 20px;
}

#sideMenu ul li a {
    color: white;
    text-decoration: none;
    display: block;
}

#sideMenu ul li:hover {
    background-color: #555;
}

.login-menu .nav-item a{
    color: #99CCFF;
}
.location-select-title{
    display: inline-block;
    font-size: 27px;
    font-weight: 500;
    color: #24418e;
}
.location-select {
    display: inline-block;
    width: auto;
    font-size: 20px;
    margin-left: 10px;
    --bs-border-color: #24418e;
    --bs-border-width: 2px;
    border-radius: 10px;
    height: 45px;
    padding-left: 10px;
    background: url(/img/caret-down-fill.svg) no-repeat right 15px center;
    background-size: 20px auto;
    padding-right: 45px;
}

.location-service thead th, .location-service tbody td {
    padding: 16px 0;
    background: transparent;
    border-bottom: none;
    border-right: 1px solid #24418e;
    font-size: 20px;
    text-align: center;
    white-space: nowrap;
}

.location-service th {
    color: #24418e;
    font-weight: 500;
}

.location-service td {
    font-weight: 300;
    border-bottom: 1px solid #24418e;
}

.location-service th:last-child, .location-service td:last-child {
    border-right: none;
}
.location-service tfoot td {
    color: black;
    font-weight: 500;
    border: none;
    background-color: #24418e;
}
.location-service .inet td{
    color: #29abe2;
}

.location-service .tv td{
    color: #1f9145;
}
