.container
{
    display: flex;
    flex-direction: column;
    position: relative;
    /* width: 100%; */
    /* height: 100%; */
    flex: 1;

    background-color: var(--alternateBg);
    padding: 10px;
    border-radius: 10px;
    /* box-shadow: 0 0 5px 5px var(--menuShadowColor); */
    
}

#slideshow
{
    flex: 1;
    /* width: 100%;
    height: 80%; */
    position: relative;
    display: flex;
}

#slideshow img
{
    flex: 15;
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 10px;
}

.thumbnailsColumn
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    
    text-align: center;
}

.prev,
.next
{
    cursor: pointer;
    /* position: absolute; */
    top: 50%;
    padding: 16px;
    color: var(--text);
    font-weight: bold;
    font-size: 2em;
    border-radius: 3px 0 0 3px;
    
    user-select: none;
    -webkit-user-select: none;
}

.next {
    left: 0;
    border-radius: 0 3px 3px 0;
  }

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover
{
    background-color: rgba(0, 0, 0, 0.8);
}

.row
{
    display: flex;
    justify-content: center;
    /* margin-top: 10px; */
}

.column
{
    width: 60px;
    margin: 5px;
}

.demo
{
    width: 100%;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid var(--text);
    border-radius: 5px;
}

.active,
.demo:hover
{
    opacity: 1;
    
}