body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    color: #000;
}

.top-bar {
    position: fixed;
    top: 20px;
    left: 40px;
    width: calc(100% - 67px);
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    z-index: 1000;
}


.top-bar-link {
    color: white;
    text-decoration: none;
    border: 1px solid white;
    padding: 5px 10px;
    border-radius: 500px;
    font-size: 22px;
    transition: all 0.3s ease;
}

.top-bar-link:hover {
    background-color: white;
    color: black;
}

.top-icons {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
}

.container {
    display: flex;
    height: 100vh;
    background-color: black;
    gap: 15px;
    padding: 95px 0 40px 0;
}

.pfeil-links {
    width: 8px;
    height: 16px;
}

.pfeil-links-container {
    display: flex;
    align-items: center;
    height: 50px;
}

.pfeil-rechts-container {
    display: flex;
    align-items: center;
}

.pfeil-rechts-container-ordner {
    height: 50px;
    right: 0px;
}

.pfeil-rechts-container-sprache, .pfeil-links-container-sprache {
    padding: 0 14px;
}

.top-icons-container {
    height: 50px;
    display: flex;
    align-items: center;
}

.sprache {
    font-size: 22px;
}

.pfeil-rechts {
    width: 8px;
    height: 16px;
}

.left-section {
    flex: 5;
    margin-left: 40px;
    overflow-y: scroll;
}

.left-section .large-image {
    width: 100%;
}
.large-video {
    /* volle Höhe minus padding nach oben (header) */
    height: calc(100vh - 95px);
}

.right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-right: 40px;
    overflow-y: auto;
    margin-top: -2px;
}

.right-section .thumbnail {
    height: auto;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
}

.right-section .thumbnail:hover {
    border: 2px solid white;
}

body {
    background-color: white;
    color: rgb(255, 255, 255);
    font-family: 'Arial', sans-serif;
    margin: 0;
}



