

#main{
    display: flex;
    margin-top: var(--header-height);
}









#loginOrSignup{
    display: none;
}











#kursMiddleSection{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#kursRightSection{
    width: 40%;
}


#videoDescriptionDiv{
    padding: 1rem;
    width: 70%;
}

.minimized{
    width: 2%;
    overflow-x: hidden;
}



#topbarOptionsDiv{
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1px white;
}



#courseListTitleDiv{
    font-size: x-large;
    margin-left: 1rem;
}


#playlistInnerWrapper{
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
}


.thumImg{
    width: 100%;
    aspect-ratio: 2/1;
    display:block;
    margin:auto;
    margin-top: 0.3em;
}

#videoDiv {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 1rem;
    
}



iframe{
    z-index: 2;
    width: 90%;
    aspect-ratio: 16/9;
}


#courseListDiv{
    overflow-y: auto;
    overflow-x: visible;
}

.courseContainerDiv{
    padding-inline: 1rem;
    padding-top: 0.5rem;
}

.courseContainerDiv:hover{
    background-color: var(--panel-color);
}

.courseTitleDiv{
font-weight: bold;
}


#nowPlayingDiv{
    display: flex;
    
    font-size: x-large;
    margin-left: 1rem;
    overflow: hidden;
    width: 70%;

}

.courseThumbnailDiv{
    background-color: black;
}

.courseInfoDiv{
    height: 1.5rem;
    font-size: 1rem;
}

#playlistHeaderDiv{
    display: flex;
    justify-content: center;
    font-weight: bolder;
    align-items: center;
    padding: 1rem;
    font-size: x-large;
    border-bottom: solid 1px white;
}


/* Style for the video div */
.videoDiv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd; /* Light grey bottom border */
    cursor: pointer; /* Change cursor to pointer when hovering over video div */
}

.videoDiv:hover {
    background-color: var(--panel-color); /* Light grey background when hovering over video div */
}

/* Style for the video title */
.titleDiv {
    font-weight: bold; /* Make video title bold */
    flex-grow: 1; /* Allow title to take up remaining space */
}

/* Style for the video duration */
.durationDiv {
    padding-left: 20px; /* Add some space to the left of the duration */
    opacity: 1;
}
.courseContainerDiv, .videoDiv { color: inherit; text-decoration: none; }
.courseContainerDiv { display: block; }
