.schedule {
    background: #18181b;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}
.stream {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0px 0;
    border-bottom: 1px solid #2a2a2e;
}
.stream:last-child {
    border-bottom: none;
}
.stream img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
}
.stream-info {
    flex: 1;
}
.stream-title {
    font-size: 16px;
    font-weight: bold;
    color: #bbb;
}
.stream-time {
    font-size: 14px;
    color: #adadb8;
    position: relative;
    padding-left: 10px;
    margin-top: 3px;
}

.stream-time::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background-color: #9147ff;
    border-radius: 2px;
}

.stream-category {
    font-size: 14px;
    color: #9c8fb8;
    margin-top: 3px;
}
