/* Schedule */
.cald_tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 14px;
}

.cald_tab {
    text-align: center;
    padding: 4px;
    background: #222;
    border: 1px solid #333;
    cursor: pointer;
    transition: 0.3s;
    min-width: 120px;
    border-radius: 8px;
}

.cald_tab .day {
    display: block;
    font-weight: bold;
    color: #bbb;
}

.cald_tab .date {
    display: block;
    font-size: 14px;
    color: #fff;
}

.cald_tab.active {
    background: #e74c3c;
    color: #fff;
}

.cald_tab.active .day,
.cald_tab.active .date {
    color: #fff;
}

.cald_tab:hover {
    background: #444;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 10px;
}
.schedule-item.ep {
  grid-template-columns: 80px 1fr;
  padding: 0 10px;
}
.schedule-item:hover {
    background-color: #666;
}

.schedule-item:hover .episode {
    background: linear-gradient(135deg, #fab20d, #d39813, #e6ae2f);
}

.schedule-item {
    display: grid;
    grid-template-columns: 80px 1fr 120px;
    align-items: center;
    background: #222;
    padding: 10px;
    border-radius: 4px;
    color: #fff;
}

.schedule-item .time {
    font-weight: bold;
    color: #ccc;
}

.schedule-item .title {
    padding: 10px 0 10px 10px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    color: #fff;
    align-items: center;
}

.schedule-item .title a {
    color: #fff;
}

.schedule-item .episode {
    text-align: center;
    background: #444;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
    transition: 0s;
}

.schedule-item.active {
    background: #333;
}

@media screen and (max-width:575px) {
    .cald_tabs {
        flex-wrap: nowrap;
        overflow-x: scroll;
        justify-content: start;
        padding-bottom: 0;
        gap: 5px;
    }

    .cald_tab .date {
        display: none;
    }

    .cald_tab {
        min-width: 51px;
    }

    .cald_tab .day {
        font-weight: 600;
    }

    .schedule-item {
        grid-template-columns: 45px 1fr 110px;
        padding: 5px 10px;
    }

    .schedule-list {
        padding: 0;
    }

    .schedule-item .episode {
        padding: 5px;
    }
}

@media screen and (min-width:576px) and (max-width: 768px) {
    .cald_tab {
        min-width: 60px;
    }

    .cald_tab .date {
        display: none;
    }
}

@media screen and (min-width:769px) and (max-width: 992px) {
    .cald_tab {
        min-width: 80px;
    }

    .cald_tabs {
        gap: 10px;
    }
}


/* End Schedule */

/* Popular Genre */
.comic_genre__item {
    border-radius: 10px;
    margin-bottom: 20px;
}

.comic_genre__item h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.comic_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: 0.4s all ease;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

a.comic_item:hover {
    box-shadow: 0 0 0px 7px #7675754d;
}

.manga_types {
    background-color: #000;
}

.comic_genre__name {
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.comic_genres {
    display: flex;
    padding-left: 0;
    list-style: none;
    margin: 10px 0 0;
}

.comic_genres ._item {
    background-color: #232323;
    padding: 4px 10px;
    margin-right: 5px;
    border-radius: 1rem;
    color: #fff;
    line-height: 1;
}

.comic_item img {
    width: 100px;
    object-fit: cover;
    height: 100px;
    border-radius: 6px;
}

.comic_info {
    flex: 1;
}

.comic_title {
    font-weight: 600;
    margin: 5px 0 0;
    color: #fff;
}

.comic_item:hover {
    box-shadow: 0 0 0px 7px #7675754d;
}

.comic_item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(0deg, transparent, transparent 30%, rgb(216 216 216 / 30%));
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    opacity: 0;
}


.comic_item:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(150%);
}

/* End Popular Genre */