.live-class-table {
    gap: 1rem!important;
}

.live-class-table .date-range {
    font-size: 1.2rem;
    text-align: center;
}

.live-class-table table {
    border-collapse: collapse;
    border-spacing: 0;
}



.live-class-table table th,
.live-class-table table td {
    padding: 1rem;
    border: 1px solid #ccc;
    text-align: center;
}

.live-class-table table td:hover {
    background-color: #f5f5f5;
}



/** live-list **/
.live-list {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.live-item {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 2.25rem;
}
.live-item:last-child {
    border-bottom: none;

}

.live-item .live-cover {
    width: 35%;
}

.live-item .live-cover {
    
    display: flex;
    flex-direction: column;
}

.live-item .live-info {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.live-item .live-info p {
    font-size: .9375rem;
}

.live-cover {
    position: relative;
}

.live-cover:hover .play-button {
    opacity: 1 !important;
}
.live-cover .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
    background: rgba(0,0,0,0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.live-cover .play-button i {
    color: white;
    font-size: 24px;
}


/** live-list-past **/
.live-list-past {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
}

.live-item-past {
    width: 20%;
    border: 1px solid #e0e0e0;
    
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: .5rem;
    
}

.live-info-past {
    padding: .5rem;
}

