:root {
    --bg-main: #1e1c23;
    --bg-darker: #141414;
    --bg-btn: #4683d9;
    --bg-btn-hover: #3a6fc1;
    --tt: #e0e0e0;
    --tt-secondary: #a0a0a0;
    --bdc: #333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.2s ease;
}

.watchlist_parent {
    position: relative;
   
}

.super__watchlist-menu {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-darker);
    box-shadow: var(--shadow);
}

.super__watchlist-select,
.super__watchlist-btn {
    padding: 10px 14px;
    color: var(--tt);
    background-color: var(--bg-darker);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.super__watchlist-select {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 16px;
    border-radius: 8px 0 0 8px;width: 100%;
}

.super__watchlist-select:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.super__watchlist-select svg {
    color: var(--bg-btn);
    width: 14px;
    height: 14px;
}

.super__watchlist-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 0 8px 8px 0;
    background-color: var(--bg-btn);
}

.super__watchlist-btn:hover {
    background-color: var(--bg-btn-hover);
}

.super__watchlist-btn svg {
    width: 12px;
    height: 12px;
    color: white;
}

/* Dropdown */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-darker);
    border-radius: 8px;
    box-shadow: var(--shadow);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    padding: 8px 0;
    margin-top: 8px;    display: flex;
    flex-direction: column;
    width: 100%;
}

.dropdown-content.show_it {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-title {
    font-weight: 600;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--tt-secondary);
    border-bottom: 1px solid var(--bdc);
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content li a {
    display: block;
    padding: 10px 16px;
    color: var(--tt);
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-content li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--bg-btn);
}

.dropdown-content li.delete-watchlist a {
    color: #ff6b6b;
}

.dropdown-content li.delete-watchlist a:hover {
    background-color: rgba(255, 107, 107, 0.1);
}

/* Адаптив */



/* Стиль для ссылки "В списках людей" */
.vspiskah {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: var(--bg-darker);
    color: var(--tt);
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-decoration: none;
    margin-top: 12px;
}

.vspiskah:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.vspiskah svg {
    width: 16px;
    height: 16px;
    color: var(--bg-btn);
}

/* Стиль для всплывающего окна статистики */
.tippy-box[data-theme~="watchlist-stats"] {
    background-color: var(--bg-darker);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 0;
    color: var(--tt);
    border: 1px solid var(--bdc);
    font-family: inherit;
}

.tippy-content {
    padding: 12px;
}

.watchlist-stats-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--tt);
    padding: 0 4px;
}

.watchlist-stats__item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
}

.watchlist-stats__type {
    color: var(--tt-secondary);
    min-width: 100px;
    font-size: 13px;
}

.watchlist-stats__bar {
    flex: 1;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
}

.watchlist-stats__bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bg-btn), #3a6fc1);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.watchlist-stats__percent {
    color: var(--tt);
    font-weight: 600;
    min-width: 40px;
    text-align: right;
}



#tippy-1[style*="display: block"] {
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}


.new-profile__watch-bar {    margin-top: 15px;   }
.watchlist-stats__bar {    margin-bottom: 10px;}
.watchlist-stats__bar > div {    height: 100%;
   } 
   .new-profile__watch-type {display: flex;
    height: 100%;
    width: 100%;
    position: absolute;
    justify-content: space-between;
    padding: 0 20px;
    align-items: center;}
