
@media (min-width: 1100px) {

    .another-page-container {
        width: 90%;
        margin: auto;
    }
}

.little-table {
    
    overflow-x: scroll;
    width: 100%;
    
}

.little-table table {
    min-width: 500px;
    min-height: 150px;
}

.little-table td {
    border: 1px solid #ccc;
}

.little-header {
    font-weight: bold;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.dual-flex {
    display: flex;
    flex-direction: horizontal;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.flex-one {
    flex: 1;
    min-width: 350px;
}

.session {
    display: flex;
    flex-direction:row;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.session-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}


.poster-container {
    width: 390px;
    
    border: 1px solid rgb(200, 200, 200);
    padding: 0.5rem;
    
}

.poster-number {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #042E76;
    color: white;
    font-size: 1.6rem;
    font-weight: 900;
    padding: 0.3rem 1.3rem;

}

.img-poster {
    max-height: 500px;
    
    width: auto;
}

.poster-card {
    position: relative;
}

.poster-title {
    font-weight: bold;
    margin: 1rem 0;
}

.poster-person {
    margin-bottom: 1rem;
}

.poster-link:hover {
    text-decoration: underline;
}