/* 豆瓣头部下拉菜单样式 */
#douban-more-actions-btn {
    position: relative;
    cursor: pointer;
}

.douban-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--bg-primary, #ffffff);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 140px;
    z-index: 1000;
    display: none;
    flex-direction: column;
}

.douban-dropdown-menu.show {
    display: flex;
}

.douban-dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: var(--text-primary, #333333);
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.douban-dropdown-item:hover {
    background-color: var(--bg-secondary, #f5f5f5);
}

.douban-dropdown-item svg {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}
