﻿:root {
    --main-background-color: var(--gray-body-bg) !important;
}
.container-speakers .speaker {
    border-radius: 8px;
    height: 300px;
    max-width: 204px;
}
    .container-speakers .speaker img {
        max-width: 204px;
        max-height: 223px;
        width: 100%;
        border-radius: 8px;
        object-fit: cover;
        height: auto;
    }
.container-speakers {
    /*    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));*/
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    max-width: 100%;
}

hr {
    background: #F6F6F6 !important;
    opacity: 1 !important;
}

.agenda-description p {
    color: #8E8E8E;
}

#agenda-detail {
    padding-bottom: 200px;
}

.time {
    color: var(--primary);
}
.rounded-4 {
    border-radius: 8px !important;
}
.gap-6 {
    gap: 12px; 
}
.container-agenda-detail {
    border-radius: 8px; 
}
@media (max-width: 991px) {
    /*    .container-speakers {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }*/
    .speaker {
        width: 200px;
    }
    .container-speakers {
        justify-content: space-between;
    }
}
@media (max-width: 767px) {
    .container-speakers {
        justify-content: center;
    }
}
@media (max-width: 578px) {
    .speaker {
        width: 180px;
    }
    .container-speakers {
        flex-direction: column;
    }
}
@media (max-width: 423px) {
    .container-speakers {
        justify-content: center;
        gap: 5px;
    }
}
