body
{
    height: 100%;
    margin: 0;
    overflow: hidden;
}

#main
{
    height: 100%;
}

.header-top .logo img
{
    height: 56px !important;
}

#map-wrapper
{
    display: flex;
    flex: 1;
}

#map-accommodationMap-map
{
    flex-grow: 1;
    min-height: unset !important;
}

header
{
    height: 91px;
    z-index: 1;
}

.sidebar
{
    width: 750px;
    position: fixed;
    z-index: 2;
    top: 90px;
    bottom: 0;
    right: -750px;
    transition: 0.5s;
    background-color: #f2f7ff;
    color: #607080;
    overflow: hidden;
}

html[data-bs-theme=dark] .sidebar
{
    background-color: #151521;
    color: #c2c2d9;
}

.sidebar .closebtn
{
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.sidebar .sidebar-header
{
    padding: 8px 32px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
}

.sidebar .sidebar-body
{
    padding: 8px 32px;
    height: 100%;
}

#main
{
    transition: margin-right .5s;
}

.sidebar.sidebar-active
{
    width: 750px !important;
    right: 0;
    z-index: 1001;
}

.sidebar .sidebar-header
{
    width: 100%;
    background-color: #f2f7ff;
}

html[data-bs-theme=dark] .sidebar .sidebar-header
{
    background-color: #151521;
}

.sidebar .video-row
{
    margin-top: 16px;
}

.sidebar .video-row img
{
    width: 100%;
}

.sidebar
{
    display: flex;
    flex-direction: column;
}

.sidebar .sidebar-body
{
    overflow-y: scroll;
    flex-grow: 1;
}


.youtube-thumbnail
{
    clip-path: inset(12% 0 12% 0);
}

.youtube-thumbnail-background
{
    width: 100%; /* nebo pevná šířka */
    aspect-ratio: 16 / 9;
    background-size: cover; /* Ořízne okraje a vyplní celý kontejner */
    background-position: center; /* Zaměří oříznutí na střed */
    background-repeat: no-repeat;
}

.sidebar .video-row
{
    display: flex;
    flex-direction: row;
}

.sidebar .video-row .video-row-thumbnail
{
    width: 150px;
    min-width: 150px;
}

.sidebar .video-row .video-row-details
{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 8px;
    margin-left: 8px;
}

.sidebar .video-row .video-row-title
{
    font-weight: bold;
}
.sidebar .video-row .video-row-release
{
    text-align: right;
    font-size: .75rem;
}



@media screen and (max-width: 800px)
{
    .sidebar.sidebar-active
    {
        width: 100% !important;
    }

    .sidebar .video-row .video-row-thumbnail
    {
        width: 100%;
        min-width: 100%;
    }

    .sidebar .video-row
    {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .sidebar .video-row .video-row-details
    {
        padding: 0 0px;
        padding-top: 1rem;
        margin-left: 0px;
    }

    .sidebar .video-row .video-row-release
    {
        text-align: right;
    }
}