/* --- Светлофиолетовая Тема --- */

/* Font Awesomeовые стили (теперь фиолетовый) */
.fa {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    --osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -height: 1;
    color: 
#9C88C6; /* Светло-фиолетовый для иконок */
}

/* Основной контейнер */
.watchlist_parent {
    position: relative;
    width: 20%;
    height: 30px;
    border-radius: 20px;
    font-weight: 600;
    top: -4px;
    transition: box-shadow 0.3s ease;
}

.watchlist_parent:hover {
    box-shadow: 0 4px 12px 
rgba(156, 136, 198, 0.4); /* Фиолетовая тень на hover */
}

/* Выпадающее меню */
.dropdown-content {
    background-color: 
#F3E5F5; /* Очень светло-фиолетовый фон */
    margin: 0;
    display: none;
    min-width: 200px;
    overflow-y: auto;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 9999;
    transform-origin: 0 0;
    transform: scale(0.95) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 24px 
rgba(156, 136, 198, 0.2); /* Мягкая фиолетовая тень */
    border: 1px solid 
rgba(156, 136, 198, 0.3);
    border-radius: 12px;
    box-sizing: border-box;
}

.show_it {
    display: block !important;
    opacity: 1 !important;
    transform: scale(1) translateY(0);
    left: 0;
    width: 200px;
    height: auto;
    box-shadow: 0 8px 24px 
rgba(156, 136, 198, 0.35);
}

/* Элементы списка */
.dropdown-content li.dropdown-title {
    cursor: default;
    border-bottom: none;
    background: linear-gradient(135deg, 
#9C88C6, 
#7E57C2); /* Градиент для заголовка */
    color: 
white;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 12px 12px 0 0;
}

.dropdown-content li {
    clear: both;
    cursor: pointer;
    min-height: 40px;
    line-height: 1.5rem;
    margin: 0;
    transition: background-color 0.2s ease;
}

.dropdown-content li:hover {
    background-color: 
rgba(156, 136, 198, 0.15); /* Лёгкий фиолетовый hover */
}

.dropdown-content li>a, .dropdown-content li>span {
    font-size: 13px;
    display: block;
    line-height: 40px;
    padding: 0 16px;
    font-weight: 500;
    color: 
#7E57C2; /* Темно-фиолетовый текст */
    border-bottom: none;
    transition: color 0.2s ease;
}

.dropdown-content li>a:hover {
    color: 
#4A148C; /* Темный фон на hover */
}

/* Кнопка добавления */
.super__watchlist {
    height: 40px;
}

.super__watchlist-menu {
    display: flex;
    margin-bottom: -4px;
    overflow: hidden;
}

.super__watchlist-select,
.super__watchlist-btn {
    box-shadow: 0 2px 8px 
rgba(156, 136, 198, 0.2);
    box-sizing: border-box;
    padding: 5px 18px;
    border: none;
    font-weight: 500;
    font-style: normal;
    line-height: 20px;
    cursor: pointer;
    /* Используем новый фон для селекта/кнопки, либо оставляем переменную, если она фиолетовая */
    background: 
#9C88C6; 
    font-size: 13px;
    color: 
white;
    flex-grow: 1;
    transition: all 0.3s ease;
    border-radius: 0;
}

/* Меняем hover для кнопок на более темный фиолетовый */
.super__watchlist-select:hover,
.super__watchlist-btn:hover {
    background: 
#7E57C2; /* Более темный фиолетовый */
}

.super__watchlist-btn.dt {
    text-shadow: none;
}

.super__watchlist-select {
    display: flex;
    flex-basis: 100%;
    align-items: center;
    border-right: none;
}

.super__watchlist-btn {
    display: flex;
    flex: 0 0 40px;
    justify-content: center;
    align-items: center;
}

.super__watchlist-select i {
    color: 
white; /* Белая иконка */
    margin-right: 8px;
    margin-left: 2px;
    font-size: 14px;
}

/* Удаление из списка */
.watchlist_parent .dropdown-content li.delete-watchlist a {
    color: 
#C2185B; /* Розово-красный для удаления */
    background-color: 
rgba(194, 24, 91, 0.1) !important;
}

.watchlist_parent .dropdown-content li.delete-watchlist:hover a {
    color: 
#880E4F;
}

/* Активное состояние */
.watchlist_parent .dropdown-content li.active a {
    color: 
#9C88C6;
    background-color: 
rgba(156, 136, 198, 0.25);
}

/* Успешная кнопка (иконка) */
.watchlist_btn_success i {
    color: 
#9C88C6; /* Фиолетовый */
}

/* Другие стили (адаптируем под фиолетовый) */
.sect__content.img .watch-status {
    position: relative;
    bottom: -184px;
    display: block;
    width: 29px;
    line-height: 30px;
    font-size: 25px;
    margin-left: 6px;
    border-radius: 15px;
    text-align: right;
    background: 
rgba(156, 136, 198, 0.9); /* Фиолетовый бэкграунд */
    color: 
white;
}

.sect__content.img .fontu {
    padding-right: 0;
    left: 0;
    width: 30px;
}

.anime-item__watch-status {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: 
rgba(156, 136, 198, 0.9); /* Базовый фиолетовый */
    color: 
white;
    font-size: 0.9em;
    transition: all 0.5s;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

/* Цвета статусов (оставил как были, но можно перекрасить, если нужно) */
.anime-item__watch-status.watching {
    background-color: 
rgba(76, 175, 80, 0.9); /* Зелёный */
}
.anime-item__watch-status.seen {
    background-color: 
rgba(244, 67, 54, 0.9); /* Красный */
}
.anime-item__watch-status.will-watch {
    background-color: 
rgba(156, 136, 198, 0.9); /* Фиолетовый */
}
.anime-item__watch-status.abandoned {
    background-color: 
rgba(158, 158, 158, 0.9); /* Серый */
}
.anime-item__watch-status.favourite {
    background-color: 
rgba(255, 193, 7, 0.9); /* Жёлтый */
}

.new-profile__watch-list {
    margin-bottom: 20px;
    padding: 10px;
}

.new-profile__watch-bar {
    height: 10px;
    background-color: 
#EDE7F6; /* Очень светло-фиолетовый для бара */
    border-radius: 4px;
    display: flex;
}

.new-profile__watch-bar div:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.new-profile__watch-bar div:last-child {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.new-profile__watch-bar--watching,
.new-profile__watch-type:nth-child(1)::before {
    background-color: 
rgba(76, 175, 80, 0.9);
}

.new-profile__watch-bar--will-watch,
.new-profile__watch-type:nth-child(2)::before {
    background-color: 
rgba(156, 136, 198, 0.9); /* Фиолетовый */
}

.new-profile__watch-bar--seen,
.new-profile__watch-type:nth-child(3)::before {
    background-color: 
rgba(244, 67, 54, 0.9);
}

.new-profile__watch-bar--abandoned,
.new-profile__watch-type:nth-child(4)::before {
    background-color: 
rgba(158, 158, 158, 0.9);
}

.new-profile__watch-bar--favourite,
.new-profile__watch-type:nth-child(5)::before {
    background-color: 
rgba(255, 193, 7, 0.9);
}

.new-profile__watch-types {
    display: flex;
    margin-top: 5px;
    font-size: 0.85em;
}

.new-profile__watch-type {
    margin-right: 15px;
    color: 
#7E57C2; /* Тёмно-фиолетовый */
}

.new-profile__watch-type:hover {
    color: 
#9C88C6;
}

.new-profile__watch-type::before {
    content: '';
    display: inline-block;
    vertical-align: top;
    width: 8px;
    height: 8px;
    margin: 2px 7px 0 0;
    background-color: 
#9C88C6; /* Фиолетовая точка */
    border-radius: 50%;
}

.new-profile__watch-type span:first-child:after {
    content: '-';
    margin: 0 5px;
}

.new-profile__title {
    text-transform: uppercase;
    color: 
#7E57C2;
    font-size: 1.1em;
    font-weight: 500;
    margin: 0 0 10px;
}

.new-profile__title a {
    color: 
#7E57C2;
}

.watchlist__sort-types {
    display: flex;
    position: relative;
    background-color: 
#F3E5F5;
    box-shadow: 0 0 1px 0 
rgba(156, 136, 198, 0.15), 0 6px 12px 0 
rgba(156, 136, 198, 0.15);
    padding: 0.75rem;
    border-radius: 99px;
}

.box-body-s {
    box-shadow: 0 1px 1px 
rgba(156, 136, 198, 0.1);
    border: 1px solid 
rgba(156, 136, 198, 0.2);
    background: var(--s-tabs); /* Если это переменная, она должна быть переопределена или соответствовать теме */
    font-size: 12px;
    color: 
#7E57C2;
}

.single_tabs {
    border-bottom: solid 3px 
#EDE7F6; /* Светло-фиолетовый */
}

.single_tabs {
    width: 100%;
    float: left;
    padding: 0 25px;
}

ul.smenu {
    float: left;
    padding: 12px 0;
    overflow: hidden;
    background: 
#F3E5F5;
}

ul.smenu li {
    float: left;
    padding-right: 5px;
}

ul.smenu li a {
    width: 100%;
    text-align: center;
    float: left;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    color: 
#7E57C2;
    transition: background 0.3s ease;
}

ul.smenu li a:hover {
    background: 
rgba(156, 136, 198, 0.1);
}

ul.smenu li a.selected {
    background: linear-gradient(135deg, 
#9C88C6, 
#7E57C2);
    color: 
white;
}

ul.smenu li a.selected, ul.smenu li a.selected:hover {
    color: 
white;
}

/* Медиа-запросы (адаптировал) */
@media only screen and (max-width: 1280px) {
    .watchlist_parent {
        width: 224px;
        margin-left: 30px;
        margin-right: 0;
    }
}

@media only screen and (max-width: 768px) {
    .super__watchlist-select {
        /*flex-shrink: 0;*/
    }
    .super__watchlist-menu {
        justify-content: center;
    }
    .watchlist_parent {
        width: 160px;
        height: 45px;
        margin-left: 30px;

    }
    .dropdown-content {
        min-width: 180px;
        left: -20px; /* Сдвиг для мобильных */
    }
}

@media (max-width: 700px) {
    .show_it {
        width: 200px;
        left: -20px;
        height: auto;
    }
    .watchlist_parent {
        /* width: 165px; */
    }
}

@media only screen and (max-width: 540px) {
    .watchlist_parent {
        position: relative;
        top: 3px;
        height: 35px;
    }
    ul.smenu {
        background: 
#F3E5F5;
    }
    ul.smenu li {
        width: 50%;
        padding: 2px;
    }
    ul.smenu li a {
        text-shadow: none;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        padding: 10px 15px;
        background: 
rgba(156, 136, 198, 0.05);
        color: 
#7E57C2;
    }
}

@media only screen and (max-width: 580px) {
    .new-profile__watch-types {
        flex-direction: column;
    }
}

/* Оригинальные стили (адаптированные минимально для совместимости, где нужно) */
.dropdown-content {
    background-color: 
#fff; /* При сбросе к оригинальному виду */
    margin: 0;
    display: none;
    min-width: 194px;
    overflow-y: auto;
    opacity: 0;
    position: relative;
    left: 0;
    top: 0;
    z-index: 9999;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
    box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
    box-sizing: border-box;
    border: 1px solid 
rgba(0,0,0,.1);
}

.dropdown-content li.dropdown-title {
    cursor: default;
    border-bottom: 1px dashed;
}

.dropdown-content li {
    clear: both;
    cursor: pointer;
    min-height: 30px;
    line-height: 1.5rem;
    text-align: left;
}

.dropdown-content li>a, .dropdown-content li>span {
    font-size: 12px;
    display: block;
    line-height: 30px;
    padding: 8px 20px;
    font-weight: 400;
    border-bottom: 1px dashed;
}

.super__watchlist {height:30px}
.super__watchlist-menu {
    display: flex;
    margin-bottom: -4px;
}

.super__watchlist-select,
.super__watchlist-btn {
    -webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
    box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
    box-sizing: border-box;
    padding: 8px 9px;

    font-weight: 500;
    font-style: normal;
    line-height: 16px;
    cursor: pointer;
    font-size: 12px;
    color: var(--tt-fade);
    border-radius: 0;
    flex-grow: 1;
}

.super__watchlist-btn.dt {    text-shadow: none;}
.super__watchlist-select {
    display: flex;
    flex-basis: 100%;
    align-items: center;
    border-right: none;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.super__watchlist-btn {
    display: flex;
    flex: 0 0 35px;
    justify-content: center;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.super__watchlist-select i {
    color: 
#fff;
    margin-right: 8px;
    margin-left: 2px;
}
.dropdown-content li {
    margin: 0;
}
.watchlist_parent .dropdown-content li.delete-watchlist a {
    color: 
#8b1014;
}
.dropdown-title {
    font-weight: 500;
    padding: 14px 12px;
    font-size: 12px;
}
.watchlist_parent .dropdown-content li.delete-watchlist a {
    color: 
#8b1014;
}
@media only screen and (max-width:1280px) {
    .watchlist_parent {
    width: 224px;
    margin-left: 30px;
    margin-right: 0;
}
}
@media only screen and (max-width:768px) {
    .super__watchlist-select {
     /*   flex-shrink: 0;*/
    }
    .super__watchlist-menu {
        justify-content: center;
    }
    .watchlist_parent {
width: 140px; height: 50px; margin-left: 30px; margin-right: 18px;
    }
}

.watchlist_parent .dropdown-content li.active a {
    color: 
#8b1014;
}
.watchlist_btn_success i {
    color: 
#f60;
}
.sect__content.img .watch-status { 
    position: relative;
    bottom: -184px;
    display: block;
    width: 29px;
    line-height: 30px;
    font-size: 25px;
    margin-left: 6px;
    border-radius: 15px;
    text-align: right;
}
.sect__content.img .fontu {padding-right: 0; left: 0; width: 30px;}